摘要: /*** * 懒汉模式 1 * 可以延迟加载,但线程不安全。 * @author admin * */ public class TestSinleton1 { private static TestSinleton1 sinleton; private TestSinleton1(){ } public static TestSinleton1 getSinleto... 阅读全文
posted @ 2016-09-14 14:18 justin_xiaoshuai 阅读(1686) 评论(0) 推荐(0) 编辑