vote up 16 vote down star
10

In other words, is this Singleton implementation thread safe:

public class Singleton
{
    private static Singleton instance;

    private Singleton() { }

    static Singleton()
    {
        instance = new Singleton();
    }

    public static Singleton Instance
    {
        get { return instance; }
    }
}
flag

50% accept rate

8 Answers

vote up 18 vote down check

Static constructors are guaranteed to be run only once per application domain, before any instances of a class are created or any static members are accessed. http://msdn.microsoft.com/en-us/library/aa645612.aspx

The implementation shown is thread safe for the initial construction, that is, no locking or null testing is required for constructing the Singleton object. However, this does not mean that any use of the instance will be synchronised. There are a variety of ways that this can be done; I've shown one below.

public class Singleton
{
    private static Singleton instance;
    // Added a static mutex for synchronising use of instance.
    private static System.Threading.Mutex mutex;
    private Singleton() { }
    static Singleton()
    {
        instance = new Singleton();
        mutex = new System.Threading.Mutex();
    }

    public static Singleton Acquire()
    {
        mutex.WaitOne();
        return instance;
    }

    // Each call to Acquire() requires a call to Release()
    public static void Release()
    {
        mutex.ReleaseMutex();
    }
}
link|flag
Note that if your singleton object is immutable, using a mutex or any synchronization mechanism is an overkill and should not be used. Also, I find the above sample implementation extremely brittle :-). All code using Singleton.Acquire() is expected to call Singleton.Release() when it's done using the singleton instance. Failing to do this (e.g. returning prematurely, leaving scope via exception, forgetting to call Release), next time this Singleton is accessed from a different thread it will deadlock in Singleton.Acquire(). – Milan Gardian Jun 25 at 13:16
Agreed, though I'd go further. If your singleton is immutable, using a singleton is overkill. Just define constants. Ultimately, using a singleton properly requires that the developers know what they are doing. As brittle as this implementation is, it is still better than the one in the question where those errors manifest randomly rather than as an obviously unreleased mutex. – Zooba Jun 30 at 5:25
vote up 7 vote down

However, it is functionally no different from the more concise, inline version:

private static readonly Singleton instance = new Singleton();

Andrew, that is not fully equivalent. By not using a static constructor, some of the guarantees about when the initializer will be executed are lost. Please see these links for in-depth explanation:

link|flag
vote up 3 vote down

Using a static constructor actually is threadsafe. The static constructor is guaranteed to be executed only once.

From the C# language specification http://msdn.microsoft.com/en-us/library/aa645612(VS.71).aspx:

The static constructor for a class executes at most once in a given application domain. The execution of a static constructor is triggered by the first of the following events to occur within an application domain:

  • An instance of the class is created.
  • Any of the static members of the class are referenced.

So yes, you can trust that your singleton will be correctly instantiated.

Zooba made an excellent point (and 15 seconds before me, too!) that the static constructor will not guarantee thread-safe shared access to the singleton. That will need to be handled in another manner.

link|flag
vote up 3 vote down

While all of these answers are giving the same general answer, there is one caveat.

Remember that all potential derivations of a generic class are compiled as individual types. So use caution when implementing static constructors for generic types.

class MyObject<T>
{
static MyObject() 
{
   //this code will get executed for each T.
}
}
link|flag
vote up 1 vote down

Static constructors are guaranteed to fire only once per App Domain so your approach should be OK. However, it is functionally no different from the more concise, inline version:

private static readonly Singleton instance = new Singleton();

Thread safety is more of an issue when you are lazily initializing things.

link|flag
vote up 1 vote down

Andrew, that is not fully equivalent. By not using a static constructor, some of the guarantees about when the initializer will be executed are lost. Please see these links for in-depth explanation:

Derek, I'm familiar with the beforefieldinit "optimization" but, personally, I never worry about it.

link|flag
vote up 1 vote down

Static constructor is guaranteed to be thread safe. Also, check out the discussion on Singleton at DeveloperZen: http://www.developerzen.com/2007/07/15/whats-wrong-with-this-code-1-discussion/

link|flag
vote up 0 vote down

The Common Language Infrastructure specification guarantees that "a type initializer shall run exactly once for any given type, unless explicitly called by user code." (Section 9.5.3.1.) So unless you have some whacky IL on the loose calling Singleton::.cctor directly (unlikely) your static constructor will run exactly once before the Singleton type is used, only one instance of Singleton will be created, and your Instance property is thread-safe.

Note that if Singleton's constructor accesses the Instance property (even indirectly) then the Instance property will be null. The best you can do is detect when this happens and throw an exception, by checking that instance is non-null in the property accessor. After your static constructor completes the Instance property will be non-null.

As Zoomba's answer points out you will need to make Singleton safe to access from multiple threads, or implement a locking mechanism around using the singleton instance.

link|flag

Your Answer

Get an OpenID
or

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