摘要: public class Singleton { private static volatile Singleton instance; private Singleton() {} public static Singleton getInstance() { if(instance==null) 阅读全文
posted @ 2020-12-07 00:30 SNM 阅读(164) 评论(0) 推荐(0)