摘要: /** * 单例模式 * * @author Administrator * */public class Singleton { private volatile static Singleton uniqeInstance = null; private Singleton() { }; /** 阅读全文
posted @ 2018-05-26 22:06 坚持太难,只争朝夕 阅读(100) 评论(0) 推荐(0) 编辑