11 2020 档案

摘要:饿汉式 public class Singleton{ //类加载时就初始化 private static final Singleton INSTANCE = new Singleton(); //构造方法必须私有 private Singleton(){} //提供获取对象的方法 public 阅读全文
posted @ 2020-11-04 10:28 卡文地洗 阅读(98) 评论(0) 推荐(0)