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