摘要: 单例模式 饿汉式 public class Singleton{ private static Singleton instance = new Singleton(); private Singleton(){} public static Singleton newInstance(){ ret 阅读全文
posted @ 2022-04-07 23:43 爆辣牛筋丸 阅读(35) 评论(0) 推荐(0)