一. 懒汉式单例
//懒汉式单例类.在第一次调用的时候实例化自己 public class Singleton { private Singleton() {} private static Singleton single=null; //静态工厂方法 public static Singleton getInstance() { if (single == null) { single = new Singleton(); } return single; } }
View Code
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Java开发中常用的设计模式(二)—单例模式 - Python技术站