单例设计模式之懒汉式

Posted xxxloser

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例设计模式之懒汉式相关的知识,希望对你有一定的参考价值。

class Singleton {
    private static Singleton instance = null;
    private Singleton(){}
    public static Singleton getInstance(){
        if(instance==null){
            synchronized(Singleton.class){
                if(instance == null){
                    instance=new Singleton();
                }    }    }
        return instance;
    }     
}
public class TestSingleton{
    public static void main(String[] args){
        Singleton s1=Singleton.getInstance();
        Singleton s2=Singleton.getInstance();
        System.out.println(s1==s2);
    }    
}

  

以上是关于单例设计模式之懒汉式的主要内容,如果未能解决你的问题,请参考以下文章

Java实现单例模式之恶汉式懒汉式枚举式,带测试

单例模式之懒汉式

单例模式之懒汉式

23种设计模式之单例模式

单例设计模式之懒汉式

单例模式之懒汉式与饿汉式