写点什么

第三周第一题

用户头像
sean
关注
发布于: 2020 年 10 月 04 日

懒汉莫斯

public class Singleton {


private volatile 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 Singleton {


private static Singleton instance = new Singleton();


private Singleton(){

}


public static Singleton getInstance(){

return instance;

}


}


用户头像

sean

关注

还未添加个人签名 2018.10.29 加入

还未添加个人简介

评论

发布
暂无评论
第三周第一题