什么是dcl
dcl(double-checked locking)被设计成支持延迟加载,当一个对象直到真正需要时才实例化:
1
2
3
4
5
6
7
8
|
class someclass { private resource resource = null ; public resource getresource() { if (resource == null ) resource = new resource(); return resource; } } |
为什么需要推迟初始化?可能创建对象是一个昂贵的操作,有时在已知的运行中可能根本就不会去调用它,这种情况下能避免创建一个不需要的对象。延迟初始化能让程序启动更快。但是在多线程环境下,可能会被初始化两次,所以需要把getresource()方法声明为synchronized。不幸的是,synchronized方法比非synchronized方法慢100倍左右,延迟初始化的初衷是为了提高效率,但是加上synchronized后,提高了启动速度,却大幅下降了执行时速度,这看起来并不是一桩好买卖。dcl看起来是最好的:
1
2
3
4
5
6
7
8
9
10
11
12
|
class someclass { private resource resource = null ; public resource getresource() { if (resource == null ) { synchronized ( this ) { if (resource == null ) resource = new resource(); } } return resource; } } |
延迟了初始化,又避免了竞态条件。看起来是一个聪明的优化--但它却不能保证正常工作。为提高计算机系统性能,编译器、处理器、缓存会对程序指令和数据进行重排序,而对象初始化操作并不是一个原子操作(可能会被重排序);因此可能存在这种情况:一个线程正在构造对象过程中,另一个线程检查时看见了resource的引用为非null。对象被非安全发布(逸出)。
根据java内存模型,synchronized的语义不仅仅是在同一个信号上的互斥(mutex),也包含线程和主存之间数据交互的同步,它确保在多处理器、多线程下对内存能有可预见的一致性视图。获取或释放锁会触发一次内存屏障(memory barrier)--强迫线程本地内存和主存同步。当一个线程退出一个synchronized block时,触发一次写屏障(write barrier )--在释放锁前必须把所有在这个同步块里修改过的变量值刷新到主存;同样,进入一个synchronized block时,触发一次读屏障(read barrier)--让本地内存失效,必须从主存中重新获取在这个同步块中将要引用的所有变量的值。正确使用同步能保证一个线程能以可预见的方式看到另一个线程的结果,线程对同步块的操作就像是原子的。“正确使用”的含义是:必须是在同一个锁上同步。
dcl是怎么失效的
了解了jmm后,再来看看dcl是怎么失效的。dcl依赖于一个非同步的resource字段,看起来无害,实则不然。假如线程a进入了synchronized block,正在执行resource = new resource();此时线程b进入 getresource()。考虑到对象初始化在内存上的影响:为new对象分配内存;调用构造方法,初始化对象的成员变量;把新创建好对象的引用赋值给someclass的resource字段。然而线程b没有进入synchronized block,却可能以不同于线程a执行的顺序看到上述内存操作。b看到的可能是如下顺序(指令重排序):分配内存,把对象引用赋值给someclass的resource字段,调用构造器。当内存已经分配好,a线程把someclass的resource字段设值完成后,线程b进入检查发现resource不是null,跳过synchronized block返回一个未构造完成的对象!显而易见,结果不是预期的也不是想要的。
下面代码是一个试图修复dcl的加强版,遗憾的是它仍然不能保证正常工作。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// (still) broken multithreaded version // "double-checked locking" idiom class foo { private helper helper = null ; public helper gethelper() { if (helper == null ) { helper h; synchronized ( this ) { h = helper; if (h == null ) synchronized ( this ) { h = new helper(); } // release inner synchronization lock helper = h; } } return helper; } // other functions and members... } |
这段代码把helper对象的构造放在一个内部的同步块,又用了一个局部变量h来先接收初始化完成后的引用,直觉就是当这个内部的同步块退出时,应该会触发一次内存屏障,能阻止对初始化helper对象和给foo的helper字段赋值的两个操作重排序。不幸的是,直觉是完全错误的,对同步规则理解得不对。对于monitorexit规则(即,释放同步),监视器被释放之前必须执行monitorexit之前的动作。然而,没有规定说monitorexit后的操作,不能在监视器释放前执行。编译器把赋值语句helper = h;移动到内部同步块之前是完全合理合法的,在这种情况下,我们又重新回到了以前。许多处理器提供执行这种单向内存屏障指令。改变语义要求释放锁是一个完整的内存屏障会有性能损失。然而即使初始化时有一个完整的内存屏障,也不能保证,在一些系统上,保证线程能看到helper的属性字段的值为非null也需要同样的内存屏障。因为处理器有自己的本地缓存拷贝,某些处理器在执行缓存一致性指令前,即使其他的处理器使用内存屏障强制把最新值写入主存,该处理器读到的还是本地缓存拷贝的旧值。
关于重排序(reorder)有3种来源:编译器、处理器、内存系统。承诺“write-once, run-anywhere concurrent applications in java” 的java是接受处理器和内存系统为优化而重排序的,所以dcl单例模式没有完美的解决方案,在多线程下编程要异常小心。下面讨论多线程环境下单例模式的实现。
多线程环境下单例的实现
第一种,同步方法(synchronized)
优点:所有情况下都能正常工作,延迟初始化;
缺点:同步严重损耗了性能,因为只有第一次实例化时才需要同步。
不推荐,绝大部分情况是没必要延迟初始化的,不如采用急切实例化(eager initialization)
1
2
3
4
5
6
7
8
9
10
|
// correct multithreaded version class foo { private helper helper = null ; public synchronized helper gethelper() { if (helper == null ) helper = new helper(); return helper; } // other functions and members... } |
第二种,使用iodh(initialization on demand holder)
利用static块做初始化,如下定义一个私有的静态类去做初始化,或者直接在静态块代码中去做初始化,能保证对象被正确构造前对所有线程不可见。
1
2
3
4
5
6
7
8
9
|
class foo { private static class helpersingleton { public static helper singleton = new helper(); } public helper gethelper() { return helpersingleton.singleton; } // other functions and members... } |
第三种,急切实例化(eager initialization)
1
2
3
4
5
6
7
8
9
10
11
|
class foo { public static final helper singleton = new helper(); // other functions and members... } class foo { private static final helper singleton = new helper(); public helper gethelper() { return singleton; } // other functions and members... } |
第四种,枚举单例
1
2
3
4
|
public enum singletonclass { instance; // other functions... } |
上面4种方式在所有情况下都能保证正常工作
第五种,只对32位基本类型的值有效
缺陷:对64位的long和double及引用对象无效,因为64位的基本类型的赋值操作不是原子的。利用场景有限。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// lazy initialization 32-bit primitives // thread-safe if computehashcode is idempotent class foo { private int cachedhashcode = 0 ; public int hashcode() { int h = cachedhashcode; if (h == 0 ) { h = computehashcode(); cachedhashcode = h; } return h; } // other functions and members... } |
第六种,dcl加上volatile语义
旧内存模型(在jdk1.5发行之前)下失效,只能在jdk1.5后使用。
另外不推荐次方法,多核处理器下线程每次写volatile字段都会把工作内存及时刷新到主存,每次读都会从主存获取数据,因为要和主存交换数据,volatile的频繁读写会占用数据总线资源。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// works with acquire/release semantics for volatile // broken under current semantics for volatile class foo { private volatile helper helper = null ; public helper gethelper() { helper h = helper; if (helper == null ) { // first check (no locking) synchronized ( this ) { h = helper; if (helper == null ) helper = h = new helper(); } } return helper; } } |
第七种,不可变对象的单例
对于不可变对象(immutable object)本身是线程安全的,不需要同步,单例实现起来最简单。比如helper是一个不可变类型,只用用final修饰singleton字段就行:
1
2
3
4
5
6
7
|
class foo { private final helper singleton = new helper(); public helper gethelper() { return singleton; } // other functions and members... } |
缺陷:旧内存模型(在jdk1.5发行之前)下失效,只能在jdk1.5后使用,因为新内存模型对final和volatile语义进行了加强。还有一个问题就是明确什么是不可变对象,如果对不可变对象含义不确定,请不要使用,另外当前是不可变对象不能保证将来此类一直是不可变对象(代码总是在不断修改),慎用!
需要使用单例时,慎用延迟初始化,优先考虑急切实例化(简单优雅,不易出错)
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/u013673976/article/details/43819425