摘要:
欢迎来到我的留言板 阅读全文
摘要:
欢迎来到我的友链小屋 展示本站所有友情站点,排列不分先后,均匀打乱算法随机渲染的喔! 友链信息 博客名称:Cherish486博客网址:https://www.cnblogs.com/cherish486/博客头像:https://pic.cnblogs.com/avatar/1273193/201 阅读全文
摘要:
单例模式 饿汉式 线程安全,调用效率高,但是不能延时加载 public class SingleTon { public static SingleTon instance = new SingleTon(); private SingleTon(){}; public static SingleT 阅读全文