Queue queue = new LinkedList ();
for(int i = 0; i<20; i++) {
queue.add("坑爹" + i);
}
for(int j =0; j<queue.size(); j++) {
String str = queue.poll();
System.out.println(j);
}嘿嘿 输出的是从1~10;虽然没什么技术含量但是我...
分类:
其他好文 时间:
2014-05-18 04:20:23
阅读次数:
282
249 out of 297 rated this helpful - Rate this
topic Gregory LeakeMicrosoft CorporationAlan Le, Alex Arkhipov, Mike Hanley, and
Steve NyholmVertigo So....
分类:
移动开发 时间:
2014-05-18 02:52:25
阅读次数:
430
简介grep (global search regular expression(RE)
and print out the
line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgr...
分类:
系统相关 时间:
2014-05-18 02:10:16
阅读次数:
529
接口:打印机接口interface Printer{ public void
read();}函数一:佳能打印机class CanPrinter implements Printer{ public void read(){
System.out.println("Canr...
分类:
编程语言 时间:
2014-05-18 00:54:20
阅读次数:
302
1.同时使用out和response的输出字符流给页面输出数据。");
response.getWriter().write("lucy");%>输出结果是lucy
jack。因为以上两个都是字符流且带有自己的缓冲区,因此JSPWriiter的缓冲区数据在JSP执行完毕之后才将数据刷新给Respon...
分类:
其他好文 时间:
2014-05-18 00:42:04
阅读次数:
269
GuoZai.javapackage edu.facade2;public class GuoZai
{ public void mai() { System.out.println("买股票"); }}GuPiao.javapackage
edu.facade2;publ...
分类:
其他好文 时间:
2014-05-18 00:34:50
阅读次数:
244
PageContext类主要的描述的是的JSP页面的上下文环境,可以获取servlet的信息、也可以将当前JSP的上下文环境传递给指定的类实现对JSP页面的操作。1.
获取JSP中所有的数据 1 "); 4 5 out.write( (pageContext.getResponse() == re....
分类:
其他好文 时间:
2014-05-18 00:31:44
阅读次数:
345
传统单例模式的实现有懒汉、饿汉等模式,也有双锁机制(防止不必要的线程再度进入锁的临界区实例化单例模式的全局变量)。不过据说(未经考证)在VS中CPU开启“out-of-order
execution”,仍然会导致出问题,原因在于: 我们假设a和b线程同时试图初始化单例模式的全局变量,a先进入方...
分类:
其他好文 时间:
2014-05-18 00:21:37
阅读次数:
268
package Demo;public class Money{ public static void
main(String args[]) { Money mon = new Money();
System.out.println(mon.change("124")); } /...
分类:
其他好文 时间:
2014-05-17 23:22:10
阅读次数:
412
System:类中的属性方法都是静态的。无法实例化err:"标准"错误输出流in:"标准"输入流out:"标准"输出流常见方法:long
currentTimeMillis();获取当前时间的毫秒值Properties getProperties();
获取系统属性Properties集合中存储的都...
分类:
编程语言 时间:
2014-05-17 22:30:49
阅读次数:
392