摘要: public class Singleton { private static Singleton singleton; private Singleton() { } public static Singleton getInstance() { if (singleton == null) {/ 阅读全文
posted @ 2020-07-21 14:43 CharyGao 阅读(723) 评论(0) 推荐(0) 编辑