标签:instance stat 模式 单例模式的优点 调用 ret 优点 lock null
DCl方式实现单例模式的优点是既能够在需要时才初始化单例,又能够保证线程安全,且单例对象初public class Singleton{
private static Singleton sInstance = null;
private Singleton(){
}
public static Singleton getInstance(){
if(sInstance == null){
synchronized(Singleton.class){
if(sInstance == null){
sInstance = new Singleton();
}
}
}
return sInstance;
}
}
标签:instance stat 模式 单例模式的优点 调用 ret 优点 lock null
原文地址:https://blog.51cto.com/williamnw/2540402