苦行僧DH

博客园 首页 新随笔 联系 订阅 管理

2021年3月4日 #

摘要: 单例模式 饿汉模式 public class Singleton { private static Singleton singleton = new Singleton(); private Singleton() { } public static Singleton getInstance() 阅读全文
posted @ 2021-03-04 14:43 苦行僧DH 阅读(89) 评论(0) 推荐(0) 编辑