单例模式(懒汉版) 线程安全
/**
* 懒汉式
* 线程安全
*/
public class Singleton {
//私有构造方法
private Singleton() {}
//在成员位置创建该类的对象
private static Singleton instance;
//对外提供静态方法获取该对象
public static synchronized Singleton getInstance() {
if(instance == null) {
instance = new Singleton();
}
return instance;
}
}
标签:Singleton,private,instance,static,设计模式,public
From: https://www.cnblogs.com/maomao777/p/17141803.html