标签:
1、懒汉模式:
特点:lazy loading很明显,也就是在需要的时候才加载,也就是我们常说的延迟加载。
(1)线程不安全:
public class Singleton { private static Singleton instance; public static Singleton getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } }(2)线程安全:
标签:
原文地址:http://blog.csdn.net/ccrzzu/article/details/46484207