单例模式的几种写法
摘要:
饿汉式单例类 public class Singleton { private Singleton(){ } private static final Singleton instance = new Singleton(); public static Singleton getInstance( 阅读全文
posted @ 2016-11-29 22:27 胡子就不刮 阅读(589) 评论(0) 推荐(0) 编辑