vote up 1 vote down star

Hi All,

I happened upon an article recently discussing the double checked locking pattern in Java and it's pitfalls and now I'm wondering if a variant of that pattern that I've been using for years now is subject to any issues.

I've looked at many posts and articles on the subject and understand the potential issues with getting a reference to a partially constructed object, and as far as I can tell, I dont think my implementation is subject to these issues. Does anyone see any issues with the following pattern?

And, if not, why dont people use it? I've never seen it recommended in any of the disucssion I've seen around this issue.

public class Test {
    private static Test instance;
    private static boolean initialized = false;

    public static Test getInstance() {
        if (!initialized) {
            synchronized (Test.class) {
                if (!initialized) {
                    instance = new Test();
                    initialized = true;
                }
            }
        }
        return instance;
    }
}
flag

4 Answers

vote up 0 vote down

You should probably use the atomic data types in java.util.concurrent.atomic.

link|flag
vote up 3 vote down

Double checked locking is indeed broken, and the solution to the problem is actually simpler to implement code-wise than this idiom - just use a static initializer.

public class Test {
    private static final Test instance = createInstance();

    private static Test createInstance() {
        // construction logic goes here...
        return new Test();
    }

    public static Test getInstance() {
        return instance;
    }
}

A static initializer is guaranteed to be executed the first time that the JVM loads the class, and before the class reference can be returned to any thread - making it inherently threadsafe.

link|flag
Your example is incorrect because 'instance' field is not marked as 'final', so, it's not guaranteed that there is no thread that can see 'null' value there. – denis.zhdanov Oct 26 at 18:59
I don't think that is true based on java.sun.com/docs/books/… and java.sun.com/docs/books/… - the final modifier only seems to affect the order of which fields are initialized. However this field should be final anyway in his usage, so I've updated the code regardless. – matt b Oct 26 at 20:07
vote up 7 vote down

Double check locking is broken. Since initialized is a primitive, it may not require it to be volatile to work, however nothing prevents initialized being seen as true to the non-syncronized code before instance is initialized.

EDIT: To clarify the above answer, the original question asked about using a boolean to control the double check locking. Without the solutions in the link above, it will not work. You could double check lock actually setting a boolean, but you still have issues about instruction reordering when it comes to creating the class instance. The suggested solution does not work because instance may not be initialized after you see the initialized boolean as true in the non-syncronized block.

The proper solution to double-check locking is to either use volatile (on the instance field) and forget about the initialized boolean, and be sure to be using JDK 1.5 or greater, or initialize it in a final field, as elaborated in the linked article and Tom's answer, or just don't use it.

Certainly the whole concept seems like a huge premature optimization unless you know you are going to get a ton of thread contention on getting this Singleton, or you have profiled the application and have seen this to be a hot spot.

link|flag
1  
Double-checked locking was broken. Don't forget to read the section entitled "Under the new Java memory model" at the end of your linked document, which shows how and why it works in JDKs 1.5 and above (i.e. over five years now). – Andrzej Doyle Oct 26 at 15:04
@dtsazza, yes it could be fixed with volatile now, but the OP didn't have that, it was trying to solve it with a boolean. – Yishai Oct 26 at 15:35
vote up 6 vote down

That would work if initialized was volatile. Just as with synchronized the interesting effects of volatile are not really so much to do with the reference as what we can say about other data. Setting up of the instance field and the Test object is forced to happen-before the write to initialized. When using the cached value through the short circuit, the initialize read happens-before reading of instance and objects reached through the reference. There is no significant difference in having a separate initialized flag (other than it causes even more complexity in the code).

(The rules for final fields in constructors for unsafe publication are a little different.)

However, you should rarely see the bug in this case. The chances of getting into trouble when using for the first time is minimal, and it is a non-repeated race.

The code is over-complicated. You could just write it as:

private static final Test instance = new Test();

public static Test getInstance() {
    return instance;
}
link|flag
But beware of creating the world on application startup. Lazy initialisation has its uses. – rsp Oct 26 at 14:59
2  
@rsp This is still lazy : while you don't access the class, it won't initialize. But it true that, is some case, we want the laziness to be really at the last moment... – KLE Oct 26 at 15:04
@Tom - there's a typo on your return value – McDowell Oct 26 at 15:36
4  
Considering how rarely lazy initialization is actually necessary, and how much more rarely still class-level laziness is not sufficient, I just can't fathom how anyone could justify the mental work going into all these discussions about double-checked locking and whatnot. – Michael Borgwardt Oct 26 at 15:58
1  
Michael: People love crazy optimisation! It does you good to think about. For some purposes (say implementing java.util.concurrent) then it is very useful. Almost always, simple code is best for keepers. – Tom Hawtin - tackline Oct 26 at 18:28
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.