如何解决Java中的“双重检查锁定已损坏”声明?
2022-09-01 01:45:26
我想在Java中为多线程实现惰性初始化。
我有一些这样的代码:
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...
}
我得到了“双重检查锁定已损坏”声明。
我该如何解决这个问题?