摘要: 饿汉式 // 饿汉式单例 public class Hungry { //构造器私有 private Hungry(){ } // 一上来就把这个类加载了 private final static Hungry HUNGRY = new Hungry(); public static Hungry 阅读全文
posted @ 2020-05-30 08:57 24/7· 阅读(549) 评论(1) 推荐(0) 编辑