摘要: 饿汉式: 1 /** 2 * 单例模式 饿汉式 3 */ 4 public class SingletonHungry { 5 6 private SingletonHungry (){ 7 } 8 public static SingletonHungry instance = new Singl 阅读全文
posted @ 2018-10-04 19:55 剑未佩托 阅读(148) 评论(0) 推荐(0)