单例模式在单线程多线程下的写法

   日期:2020-10-09     浏览:92    评论:0    
核心提示:1、饿汉模式public class HungrySingleton { private static final HungrySingleton instance = new HungrySingleton(); private HungrySingleton(){} public static HungrySingleton getInstance(){ return instance; }}饿汉模式在类加载的时候就完成了实例化,所以没有线程

1、饿汉模式

public class HungrySingleton {

    private static final HungrySingleton instance = new HungrySingleton();

    private HungrySingleton(){}

    public static HungrySingleton getInstance(){
        return instance;
    }
}

饿汉模式在类加载的时候就完成了实例化,所以没有线程同步问题

2、懒汉模式

public class LazySingleton {
    private static volatile LazySingleton instance = null;

    //加private避免在外部被实例化
    private LazySingleton(){}

    public static LazySingleton getInstance(){
        if (instance == null){
            instance = new LazySingleton();
        }
        return instance;
    }
}

适用于单线程,由于当线程1执行完 if (instance == null)后,还没开始new对象,线程2可能已经通过了这个判断并且已经实例化了对象,这时候就会产生多个对象

3、懒汉模式(加锁)

public class LazySingleton {

    //加上volatile关键字保证instance在所有线程中同步(操作可见性)
    private static volatile LazySingleton instance = null;

    //加private避免在外部被实例化
    private LazySingleton(){}

    //加synchronized同步
    public static synchronized LazySingleton getInstance(){
        if (instance == null){
            instance = new LazySingleton();
        }
        return instance;
    }
}

适用于多线程。在原基础上加了双重锁(volatile和synchronized)可以保证在多线程环境下的安全问题

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服