欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA设计模式之单例模式

程序员文章站 2022-07-14 10:04:25
...

singleton模式的实现

单线程的应用:

JAVA代码

public class SingLeton {
    private SingLeton(){
        
    }
    private static SingLeton instance=null;
    
    public static SingLeton getInstance(){
        if(instance==null){
            return instance=new SingLeton();
        }else{
            return instance;
        }
    }

}