Je veux implémenter l'initialisation paresseuse pour le multithreading en Java.
J'ai un code du genre :
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...
}
Et je reçois la déclaration "Double-Checked Locking is Broken".
Comment puis-je résoudre ce problème ?