@Tejs,
Actually, in .NET you do not need to use the double-check lock mechanism - there are better ways around it. But if you choose to do so, your implementation of the double-check lock is incorrect and not truly thread-safe. The compiler could optimize away the initialization of the _instance = new PrintStringDataBuilder(); - there are 3 possible modifications to make your example truly thread-safe:
- initialize the static member inline - definitely the easiest!
private static PrintStringDataBuilder _instance = new PrintStringDataBuilder;
public static PrintStringDataBuilder GetInstance()
{
return _instance;
}
2 . use the 'volatile' keyword to ensure that the initialization of the PrintStringDataBuilder is not optimized by the JIT.
private static volatile PrintStringDataBuilder _instance = null;
private static object _lockObject = new object();
public static PrintStringDataBuilder GetInstance()
{
if(_instance == null)
{
lock(_lockObject)
{
if(_instance == null)
{
_instance = new PrintStringDataBuilder();
}
}
}
return _instance;
}
3 . Use Interlocked.Exchange with double-check lock:
private static PrintStringDataBuilder _instance = null;
private static object _lockObject = new object();
public static PrintStringDataBuilder GetInstance()
{
if(_instance == null)
{
lock(_lockObject)
{
if(_instance == null)
{
var temp = new PrintStringDataBuilder();
Interlocked.Exchange(ref _instance, temp);
}
}
}
return _instance;
}
Hope this helps.
new PrintStringDataBuilder()does. Are you trying to make it a Singleton? If so, this is not doing that. If not, why do you have a staticGetInstance()method when you could just call the constructor. – cadrell0 Apr 27 '12 at 17:49PrintStringDataBuilderHow are you other fields initialized? – Conrad Frix Apr 27 '12 at 17:50Create.GetInstancesounds too much like a singleton. – CodesInChaos Apr 28 '12 at 10:43