摘要: public class Test{ //中间变量 private String res = "0"; //方法 public int func(int i){ if(i>0){ int temp = i%10; res = res+String.valueOf(temp); func(i/10); 阅读全文
posted @ 2016-02-15 17:01 小祥工作室 阅读(2611) 评论(0) 推荐(0) 编辑
摘要: //懒汉式(线程不安全) class LazySingleton{ private static LazySingleton singleton; private LazySingleton(){} public static LazySingleton getInstance(){ if(sing 阅读全文
posted @ 2016-02-15 16:31 小祥工作室 阅读(301) 评论(0) 推荐(0) 编辑