码迷,mamicode.com
首页 >  
搜索关键字:private/static/this    ( 3141个结果
【学习】爬糗事百科,可自动翻页。
1 namespace HTML 2 { 3 class Program 4 { 5 const string qsbkMainUrl = "http://www.qiushibaike.com"; 6 7 private static string GetWBJokeUrl(int pageInd ...
分类:其他好文   时间:2018-04-10 13:26:23    阅读次数:145
输出随机数(网上找的,仅自用,非原创)
using System;namespace StaticConstructor{ class RandomNumberGenerator { private static Random randomNumber; static RandomNumberGenerator() { randomNum ...
分类:其他好文   时间:2018-04-07 16:09:35    阅读次数:147
一道笔试题来理顺Java中的值传递和引用传递
前段时间参加了一场面试,其中有一道引用传递的题,因为当时并没有考虑清楚所以做错了。 现在来复盘一下,题目如下:private static void change(StringBuffer str11, StringBuffer str12) { str12 = str11; str11 = new... ...
分类:编程语言   时间:2018-04-01 12:01:38    阅读次数:266
Java Base64位编码与String字符串的相互转换,Base64与Bitmap的相互转换实例代码
package com.duanlian.daimengmusic.utils; public final class Base64Util { private static final int BASELENGTH = 128; private static final int LOOKUPLEN ...
分类:编程语言   时间:2018-03-29 14:51:12    阅读次数:164
文件 日志 写入 与读取
private static string logPath = @"D:\LogS\Logs\"; public static string FloderPath { get { return logPath; } set { logPath = value; } } private static ...
分类:其他好文   时间:2018-03-27 16:36:15    阅读次数:144
hm3
作业题目: /** * Finds and prints n prime integers * Jeff Offutt, Spring 2003 */ private static void printPrimes(int n) { int curPrime; //Value currently c ...
分类:其他好文   时间:2018-03-27 01:58:09    阅读次数:210
软件测试homework3
/** * Finds and prints n prime integers * Jeff Offutt, Spring 2003 */ private static void printPrimes(int n) { int curPrime; //Value currently conside ...
分类:其他好文   时间:2018-03-27 01:44:07    阅读次数:207
软件测试,Homework3
软件测试,Homework3 题目 Java private static void printPrimes(int n) { int curPrime; //Value currently considered for primeness int numPrimes; // Number of p ...
分类:其他好文   时间:2018-03-26 23:40:35    阅读次数:452
实现一个主路径覆盖的测试
实现一个主路径覆盖的测试 1.源代码: /** * Finds and prints n prime integers * Jeff Offutt, Spring 2003 */ private static void printPrimes(int n) { int curPrime; //Val ...
分类:其他好文   时间:2018-03-26 23:33:11    阅读次数:261
第三次作业
作业题目: /** * Finds and prints n prime integers * Jeff Offutt, Spring 2003 */ private static void printPrimes(int n) { int curPrime; //Value currently c ...
分类:其他好文   时间:2018-03-26 23:32:09    阅读次数:210
3141条   上一页 1 ... 73 74 75 76 77 ... 315 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!