标签:style blog color div new 设计
设计一个类,我们只能生成该类的一个实例。
单线程可用,多线程不安全:
public class Singleton { private static Singleton instance = null; private Singleton() { } public static Singleton getInstance() { if (instance == null) instance = new Singleton(); return instance; } }
标签:style blog color div new 设计
原文地址:http://www.cnblogs.com/jdflyfly/p/3834897.html