多线程为什么要Double-Check Locking

public static Singleton Value{

 

  get {

        // Has the singleton object already been created?

        if (s_value == null) {

        // No, only one thread should create it

        lock (s_lock) {

        // Did another thread create it?

        if (s_value == null) {

        // No, OK, this thread will create it.

        // Volatile ensures that all of singleton object's fields

        // (initialled by the constructor) are flushed before

        // other threads see the reference to the Singleton object

        s_value = new Singleton();

    }

}

第二次检查是因为如果两个线程都进入了 if (s_value == null) {,一个线程lock住new完了以后,另一个线程又lock并new,把原来的实例冲掉了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值