摘要: public class NewDemo01 { public static void main(String[] args) { System.out.print("No args(fun()):"); fun(); System.out.print("\n one args(fun()):"); ... 阅读全文
posted @ 2014-08-01 15:32 塔斯曼 阅读(124) 评论(0) 推荐(0) 编辑
摘要: public class ArrayDemo05 { public static void main(String[] args) { int list01[]={67,89,87,69,90,100,75,90}; int max; int min; max=min=list01[0]; for(int i=0;imax)... 阅读全文
posted @ 2014-08-01 15:00 塔斯曼 阅读(258) 评论(0) 推荐(0) 编辑
摘要: package Counter; public class Counter { private int counter; private static Counter instance = null; protected Counter() { } public static Counter getInstance() { ... 阅读全文
posted @ 2014-08-01 11:30 塔斯曼 阅读(106) 评论(0) 推荐(0) 编辑