Double-checked locking in .net - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T17:01:44Zhttp://stackoverflow.com/feeds/question/394898http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/394898/double-checked-locking-in-net2Double-checked locking in .neterikkallen2008-12-27T11:05:42Z2008-12-27T11:47:35Z
<p>I came across this <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html" rel="nofollow">article</a> 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?</p>
http://stackoverflow.com/questions/394898/double-checked-locking-in-net/394909#3949092Answer by Cameron MacFarland for Double-checked locking in .netCameron MacFarland2008-12-27T11:21:12Z2008-12-27T11:30:29Z<p><a href="http://www.yoda.arachsys.com/csharp/singleton.html" rel="nofollow">Implementing the Singleton Pattern in C#</a> talks about this problem in the third version.</p>
<p>It says:</p>
<blockquote>
<p>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!</p>
</blockquote>
<p>The author seems to imply that double locking is less likely to work than other strategies and thus should not be used.</p>
http://stackoverflow.com/questions/394898/double-checked-locking-in-net/394918#3949181Answer by Michael Borgwardt for Double-checked locking in .netMichael Borgwardt2008-12-27T11:32:27Z2008-12-27T11:32:27Z<p>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;</p>
<pre><code>private static Singleton instance = new Singleton();
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/394898/double-checked-locking-in-net/394932#3949325Answer by Jon Skeet for Double-checked locking in .netJon Skeet2008-12-27T11:47:35Z2008-12-27T11:47:35Z<p>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 <em>exactly</em> right. If you mess things up even slightly, you may well end up losing the thread safety.</p>
<p>As other answers have stated, if you're implementing the <a href="http://pobox.com/~skeet/csharp/singleton.html" rel="nofollow">singleton pattern</a> 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.</p>