摘要: public class SingletonTest { private SingletonTest() { } public static SingletonTest getInstance() { return Singleton.INSTANCE.getInstance(); } private enum Singleton ... 阅读全文
posted @ 2019-01-06 21:44 mke 阅读(808) 评论(0) 推荐(0)