up vote 15 down vote favorite
5
share [g+] share [fb]

I came across this article discussing why the double-check locking paradigm is broken in java. Is the paradigm valid for .net (in particular, C#), if variables are declared volatile?

link|improve this question

65% accept rate
feedback

6 Answers

up vote 5 down vote accepted

Implementing the Singleton Pattern in C# talks about this problem in the third version.

It says:

Making the instance variable volatile can make it work, as would explicit memory barrier calls, although in the latter case even experts can't agree exactly which barriers are required. I tend to try to avoid situations where experts don't agree what's right and what's wrong!

The author seems to imply that double locking is less likely to work than other strategies and thus should not be used.

link|improve this answer
feedback

Double-checking locking now works in Java as well as C# (the Java memory model changed and this is one of the effects). However, you have to get it exactly right. If you mess things up even slightly, you may well end up losing the thread safety.

As other answers have stated, if you're implementing the singleton pattern there are much better ways to do it. Personally, if I'm in a situation where I have to choose between double-checked locking and "lock every time" code I'd go for locking every time until I'd got real evidence that it was causing a bottleneck. When it comes to threading, a simple and obviously-correct pattern is worth a lot.

link|improve this answer
@Jon: Article from the question states that volatile helps for JDK5+. What about .NET? Was volatile enough to implement a proper double-check locking on .NET 1.1? (for example, what about the example "Third version - attempted thread-safety using double-check locking" in your article: is it technically 'fixed' when volatile put on instance static field?) – IgorK Mar 24 '10 at 10:49
4  
@IgorK: Yes, I believe it works when the variable is marked as volatile. – Jon Skeet Mar 24 '10 at 11:12
@Jon: OK, thank you. At least for singletons we have better solutions indeed. – IgorK Mar 24 '10 at 11:26
1  
@Myster: I would personally just take out the lock always - particularly if you're doing other slow things, which make the cost of the lock insignificant. – Jon Skeet Feb 18 '11 at 6:22
2  
@Myster: By "take out the lock" I meant "acquire the lock". I see that it was ambiguous :) Yes, remove the outer check. – Jon Skeet Feb 20 '11 at 22:48
show 2 more comments
feedback

.NET 4.0 has a new type: Lazy<T> that takes away any concern about getting the pattern wrong. It's part of the new Task Parallel Library.

See the MSDN Parallel Computing Dev Center: http://msdn.microsoft.com/en-us/concurrency/default.aspx

BTW, there's a backport (I believe it is unsupported) for .NET 3.5 SP1 available here.

link|improve this answer
feedback

Note than in Java (and most likely in .Net as well), double-checked locking for singleton initialization is completely unnecessary as well as broken. Since classes are not initialized until they're first used, the desired lazy initialization is already achieved by this;

private static Singleton instance = new Singleton();

Unless your Singleton class contains stuff like constants that may be accessed before a Singleton instance is first used, this is all you need to do.

link|improve this answer
DCL does work since Java 5 (see Jon Skeet's comment, though he didn't talk about exactly what you must do to make it work). You need: 1. Java 5. 2. DCL reference declared volatile (or atomic in some way, e.g., using AtomicReference). – Chris Jester-Young Dec 27 '08 at 12:14
See the "Under the new Java Memory Model" section in cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html – Chris Jester-Young Dec 27 '08 at 12:16
For java Singleton and DCL patterns see this link blogs.sun.com/cwebster/entry/double_check_locking – facildelembrar Aug 1 '09 at 22:27
feedback

I've gotten double-checked locking to work by using a boolean (i.e. using a primitive to avoid the lazy initialisation):

The singleton using boolean does not work. The order of operations as seen between different threads is not guaranteed unless you go through a memory barrier. In other words, as seen from a second thread, created = true may be executed before instance= new Singleton();

link|improve this answer
feedback

I've gotten double-checked locking to work by using a boolean (i.e. using a primitive to avoid the lazy initialisation):

private static Singleton instance;
private static boolean created;
public static Singleton getInstance() {
    if (!created) {
        synchronized (Singleton.class) {
            if (!created) {
                instance = new Singleton();
                created = true;
            }
        }
    }
    return instance;
}
link|improve this answer
1  
How have you proven that it works? – erikkallen Feb 28 '11 at 23:07
feedback

Your Answer

 
or
required, but never shown

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