设计模式-单例模式
摘要:
package test; /** * 饿汉式单列模式 * @author lenovo * */ public class Singleton1 { private static Singleton1 Singleton1=new Singleton1(); private Singleton1(){ } public st... 阅读全文
posted @ 2016-08-18 21:53 悄悄的来,匆匆的走 阅读(200) 评论(0) 推荐(0) 编辑