摘要: 问题引入 Java中实现单例模式,一般性的做法是如下方式: class Singleton { private static Singleton INSTANCE = null; private Singleton() {} public static getInstance() { if (nul 阅读全文
posted @ 2021-04-08 12:40 leozmm 阅读(2508) 评论(0) 推荐(0) 编辑