I am looking at some code in our app that I think may be encountering a case of "Double-checked locking". I have written some sample code that is similar to what we do.
Can anyone see how this can be experiencing double-checked locking? Or is this safe?
class Foo {
private Helper helper = null;
public Helper getHelper() {
Helper result;
synchronized(this) {
result = helper;
}
if (helper == null) {
synchronized(this) {
if (helper == null) {
helper = new Helper();
}
}
}
return helper;
}
}
Base code borrowed from wiki.
resultand then not use it? – Kirk Woll Dec 6 '11 at 23:02volatile: use it (or don't use DCL). – Bruno Dec 6 '11 at 23:06thiswhile assigninghelper. And there is another lock at the beginning of thegetHelperfunction onthis. So ifgetHelperis called on Thread 1 when an assignment is going on in Thread 2, the firstsynchronizedblock holds the execution of Thread 1 till the assignment on Thread 2 is completed. So the value of helper is never accessed while it is being set. – Aishwar Dec 6 '11 at 23:20