Implementing the Singleton pattern in C #

Source: Internet
Author: User

From: http://www.yoda.arachsys.com/csharp/singleton.html

 

The Singleton pattern is one of the best-known patterns in software engineering. essential, a singleton is a class which only allows a single instance of itself to be created, and usually gives simple access to that instance. most commonly, Singletons don't allow any parameters to be specified when creating the instance-as otherwise a second request for an instance but with a different paramete R cocould be problematic! (If the same instance shocould be accessed for all requests with the same parameter, the factory pattern is more appropriate .) this article deals only with the situation where no parameters are required. typically a requirement of singletons is that they are created lazily-I. e. that the instance isn' t created until it is first needed.

There are varous different ways of implementing the Singleton pattern in C #. I shall present them here in reverse order of elegance, starting with the most commonly seen, which is not thread-safe, and working up to a fully lazily-loaded, thread-safe, simple and highly versions t version. note that in the code here, I omitPrivateModifier, as it is the default for class members. In your other versions ages such as Java, there is a different default, andPrivateShocould be used.

All these implementations share four common characteristics, however:

    • A single constructor, which is private and parameterless. this prevents other classes from instantiating it (which wocould be a violation of the pattern ). note that it also prevents subclassing-if a singleton can be subclassed once, it can be subclassed twice, and if each of those subclasses can create an instance, the pattern is violated. the factory pattern can be used if you need a single instance of a base type, but the exact type isn' t known until runtime.
    • the class is sealed. This is unnecessary, strictly speaking, due to the abve point, but may help the JIT to optimise things more.
    • A static variable which holds a reference to the single created instance, if any.
    • A public static means of getting the reference to the single created instance, creating one if necessary.

Note that all of these implementations also use a public Static PropertyInstanceAs the means of accessing the instance. In all cases, the property cocould easily be converted to a method, with no impact on thread-safety or performance.

First version-Not thread-safe

  // bad code! Do not use!   Public   sealed   class  Singleton { static  Singleton instance =  null ; singleton () {}< SPAN class = "modifier"> Public   static  Singleton instance {get { If  (instance =  null ) {instance =  New  Singleton () ;}< SPAN class = "statement"> return  instance ;}}} 

As hinted at before, the above is not thread-safe. Two different threads cowould both have evaluated the testIf (instance = NULL)And found it to be true, then both create instances, which violates the Singleton pattern. note that in fact the instance may already have been created before the expression is evaluated, but the memory model doesn't guarantee that the new value of instance will be seen by other threads unless suitable memory barriers have been passed.

Second Version-simple thread-Safety

 Public   Sealed   Class Singleton { Static Singleton instance = Null ; Static  Readonly   Object Padlock = New   Object (); Singleton (){} Public   Static Singleton instance {get { Lock (Padlock ){ If (Instance = Null ) {Instance = New Singleton ();} Return Instance ;}}}}

This implementation is thread-safe. the thread takes out a lock on a shared object, and then checks whether or not the instance has been created before creating the instance. this takes care of the memory barrier issue (as locking makes sure that all reads occur logically after the lock acquire, and unlocking makes sure that all writes occur logically before the lock release) and ensures that only one thread will create an instance (as only one thread can be in that part of the code at a time-by the time the second thread enters it, the first thread will have created the instance, so the expression will evaluate to false ). unfortunately, performance suffers as a lock is acquired every time the instance is requested.

Note that instead of locking onTypeof (Singleton)As some versions of this implementation do, I lock on the value of a static variable which is private to the class. locking on objects which other classes can access and lock on (such as the type) Risks performance issues and even deadlocks. this is a general style preference of mine-wherever possible, only lock on objects specifically created for the purpose of locking, or which document that they are to be locked on for specific purposes (e.g. for waiting/pulsing a queue ). usually such objects shocould be private to the class they are used in. this helps to make writing thread-Safe applications significantly easier.

Third version-Attempted thread-safety using double-check locking

 // Bad code! Do not use!              Public   Sealed  Class Singleton { Static Singleton instance = Null ; Static   Readonly   Object Padlock = New   Object (); Singleton (){} Public   Static Singleton instance {get { If (Instance = Null ){Lock (Padlock ){ If (Instance = Null ) {Instance = New Singleton ();}}} Return Instance ;}}}

This implementation attempts to be thread-safe without the necessity of taking out a lock every time. Unfortunately, there are four downsides to the pattern:

  • it doesn' t work in Java. this may seem an odd thing to comment on, but it's worth knowing if you ever need the Singleton pattern in Java, and C # programmers may well also be Java programmers. the Java Memory Model doesn' t ensure that the constructor completes before the reference to the new object is assigned to instance. the Java Memory Model underwent a reworking for version 1.5, but double-check locking is still broken after this without a volatile variable (as in C #).
  • Without any memory barriers, it's broken in The ecma cli specification too. it's possible that under. NET 2.0 Memory Model (which is stronger than the ECMA spec) It's safe, but I 'd rather not rely on those stronger semantics, especially if there's any doubt as to the safety. makingInstanceVariable volatile can make it work, as wocould explain icit memory barrier CILS, 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!
  • It's easy to get wrong. The pattern needs to be pretty much exactly as above-any significant changes are likely to impact either performance or correctness.
  • It still doesn' t perform as well as the later implementations.
Fourth version-not quite as lazy, but thread-safe without using locks

  Public   sealed   class  Singleton { static   readonly  Singleton instance =  New  Singleton ();  // explicit static constructor to tell C # compiler   // not to mark type as beforefieldinit 
        static  Singleton () {} Singleton () {}< SPAN class = "modifier"> Public   static  Singleton instance {get { return  instance ;}}} 

As you can see, this is really is extremely simple-but why is it thread-safe and how lazy is it?Well, static constructors in C # are specified to execute only when an instance of the class is created or a static member is referenced, and to execute only once per appdomain.(This feature. net will gurantee the instance initialize once in per appdomain .) given that this check for the type being newly constructed needs to be executed whatever else happens, it will be faster than adding extra checking as in the previous examples. there are a couple of wrinkles, however:

  • It's not as lazy as the other implementations. In particle, if you have static members otherInstance, The first reference to those Members will involve creating the instance. This is corrected in the next implementation.
  • There are complications if one static constructor invokes another which invokes the first again. look in. net specifications (currently section 9.5.3 of partition II) for more details about the exact nature of Type initializers-they're unlikely to bite you, but it's worth being aware of the consequences of static constructors which refer to each other in a cycle.
  • The laziness of Type initializers is only guaranteed by. net when the type isn' t marked with a special flag calledBeforefieldinit. Unfortunately, the C # Compiler (as provided in. NET 1.1 runtime, at least) marks all types which don't have a static Constructor (I. e. A block which looks like a constructor but is marked static)Beforefieldinit. I now have a discussion page with more details about this issue. Also note that it affects performance, as discussed near the bottom of this article.

 

One could cut you can take with this implementation (and only this one) is to just makeInstanceA public static readonly variable, and get rid of the property entirely. This makes the basic skeleton code absolutely tiny! Registrant people, however, prefer to have a property in case further action is needed in future, and JIT inlining is likely to make the performance identical. (note that the static constructor itself is still required if you require laziness .)

Th version-fully lazy instantiation

 Public   Sealed   Class Singleton {Singleton (){} Public   Static Singleton instance {get { Return Nested. instance ;}} Class Nested { // Explicit static constructor to tell C # Compiler              // Not to mark type as beforefieldinit              Static Nested (){} Internal   Static   Readonly Singleton instance = New Singleton ();}}

Here, instantiation is triggered by the first reference to the static member of the nested class, which only occurs inInstance. This means the implementation is fully lazy, but has all the performance benefits of the previous ones. note that although Nested classes have access to the enclosing class's private members, the reverse is not true, hence the needInstanceTo be internal here. That doesn't raise any other problems, though, as the class itself is private. The code is a bit more complicated in order to make the instantiation lazy, however.

Performance vs laziness

In actual cases, you won't actually require full laziness-unless your class initialization does something particle ly time-consuming, or has some side-effect elsewhere, it's probably fine to leave out the explicit static constructor shown above. this can increase performance as it allows the JIT compiler to make a single check (for instance at the start of a Method) to ensure that the type has been initialized, and then assume it from then on. if your Singleton instance is referenced within a relatively tight loop, this can make a (relatively) significant performance difference. you shoshould decide whether or not fully lazy instantiation is required, and document this demo-appropriately within the class. (See below for more on performance, however .)

Exceptions

Sometimes, you need to do work in a singleton constructor which may throw an exception, but might not be fatal to the whole application. potentially, your application may be able to fix the problem and want to try again. using type initializers to construct the singleton becomes problematic at this stage. different runtimes handle this case differently, but I don't know of any which do the desired thing (running the type initializer again), and even if one did, your code wocould be broken on other runtimes. to avoid these problems, I 'd suggest using the second pattern listed on the page-just use a simple lock, and go through the check each time, building the instance in the method/property if it hasn' t already been successfully built.

Thanks to Andriy tereshchenko for raising this issue.

A word on Performance

A lot of the reason for this page stemmed from people trying to be clever, and thus coming up with the double-checked locking algorithm. there is an attitude of locking being expensive which is common and misguided. I 've written a very quick benchmark which just acquires Singleton instances in a loop a Billion Ways, trying different variants. it's not terribly scientific, because in real life you m Ay want to know how fast it is if each iteration actually involved a call into a method fetching the Singleton, etc. however, it does show an important point. on my laptop, the slowest solution (by a factor of about 5) is the locking one (solution 2 ). is that important? Probably not, when you bear in mind that it still managed to acquire the singleton Billion Times in under 40 seconds. that means that if you're "only" acquiring the singleton four hundred thousand times per second, the cost of the acquisition is going to be 1% of the Performance-so improving it isn' t going to do a lot. now, if you Are Acquiring the Singleton that often-isn't it likely you're using it within a loop? If you care that much about improving the performance a little bit, why not declare a local variable outside the loop, acquire the singleton once and Then Loop. Bingo, even the slowest implementation becomes easily adequate.

I wocould be very interested to seeReal worldApplication where the difference between using simple locking and using one of the faster solutions actually made a significant performance difference.

Conclusion (modified slightly on January 7th 2006)

There are varous different ways of implementing the Singleton pattern in C #. A reader has written to me detailing a way he has encapsulated the synchronization aspect, which while I acknowledge may be useful in a few very particle situations (specifically where you want very high performance, and the ability to determine whether or not the Singleton has been created, and full laziness regardless of other static members being called ). I don't personally see that situation coming up often enough to merit going further with on this page, but please mail me if you're in that situation.

My personal preference is for solution 4: the only time I wocould normally go away from it is if I needed to be able to call other static methods without triggering initialization, or if I needed to know whether or not the Singleton has already been instantiated. I don't remember the last time I was in that situation, assuming I even have. in that case, I 'd probably go for solution 2, which is still nice and easy to get right.

Solution 5 is elegant, but trickier than 2 or 4, and as I said abve, the benefits it provides seem to only be rarely useful.

(I wouldn't use solution 1 because it's broken, and I wouldn't use solution 3 because it has no benefits over 5 .)

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.