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?
|
|
|
|
|
|
|
Implementing the Singleton Pattern in C# talks about this problem in the third version. It says:
The author seems to imply that double locking is less likely to work than other strategies and thus should not be used. |
|||
|
|
|
|
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. |
||
|
|
|
|
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;
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. |
||||||
|
