Click here to Skip to main content
Licence CPOL
First Posted 23 Apr 2008
Views 23,222
Bookmarked 19 times

Singleton Design Pattern - C# implementation.

By | 23 Apr 2008 | Article
This article make you aware about the singleton design pattern and its implementation in C#.

Introduction

Cristopher Alexander says, “Each patterns describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice”.

Although Cristopher was an architect, who had designed great buildings, this saying holds true in our day-to-day life as well. We can very much relate this to software development. Since we come across many design problems every day, we can define a strategy for solving these problems. The strategy remains same but the implementation may vary from developer to developer.

These strategies of solving commonly occurring problem without defining the exact code are called patterns and since these are very much related to our software designs, we call then Software Design Patterns.

Singleton Pattern

The singleton pattern is a software design pattern that is used to restrict instantiation of a class to one object. This is useful when we require exactly one object of a class to perform our operations. In this pattern we ensure that the class has only one instance and we provide a global point of access to this object.

The singleton pattern can be implemented in C# by the use of static method, which provides a global point of access to a singleton object. We create a static volatile object of the class which serves as a single instance for the class. Look at the code sample given below:

           
public class Singleton

{
    // Static object of the Singleton class. 
    private static volatile Singleton _instance = null;

    /// <summary>
    /// The static method to provide global access to the singleton object.
    /// </summary>
    /// <returns>Singleton object of class Singleton.</returns>
    public static Singleton Instance()
    {
        if (_instance == null)
        {
            lock (typeof(Singleton))
            {
                _instance = new Singleton();
            }
        }
        return _instance;
    }

    /// <summary>
    /// The constructor is defined private in nature to restrict access.
    /// </summary>
    private Singleton() { }

}        

In the above code we have made the constructor as private, this will ensure that no one can create an object of this class using the new keyword. Then we created a static volatile object of class Singleton. This object will serve as the single point of access to this class. Going ahead we have written a public static method GetInstance(), this method is responsible for creating the static object of the Singleton class if it already doesn’t exist. If the object is already created, then this method will return an instance of the already created object. Hence the code will ensure creation of only one object of the Singleton class.

In the above code the lock statement is used for thread safety. In multi-threaded environment we would require the creation of object in a thread safe manner. Furthermore the volatile keyword is used to ensure that there is no optimizer reordering of the code.

Look at the code given below. Is it an implementation of Singleton design pattern??? This I leave it to you… explore and enjoy understanding patterns…. :)

/// <summary>
/// A sealed class providing access to it's ONLY readonly static instance.
/// </summary>
sealed class SingletonCounter 
{
    public static readonly SingletonCounter Instance = 
         new SingletonCounter();
  
    private SingletonCounter() {}
}
   

Conclusion

The Singleton design pattern is a very useful mechanism for providing a single point of object access in OOPs application. Regardless of the implementation used, the pattern provides a commonly understood concept that can be easily shared among design and development teams. A special care must be taken while implementing the singleton pattern. This pattern must only be used when required, otherwise it may act as an anti-pattern.

Wanna more Tech-Articles ?

http://sandeep-aparajit.blogspot.com

History

None.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sandeep Aparajit

Software Developer
Microsoft R&D
France France

Member

Sandeep has 7+ yrs of IT experience. He is Microsoft Certified Technology Specialist and has been certified for Analyzing Requirements and Defining Microsoft .NET Solution Architectures.
He is an active member of:
1. MSDN Forums
2. CodeProject.com
3. Community-Credit.com
4. Blogspot.com
 
You can find his contributions at:
My Blog
Photography


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberPratik.Patel20:02 26 Aug '10  
GeneralMy vote of 1 Pingroupuzunyusuf9:47 30 Dec '09  
Questionalternate approach PinmemberPratik.Patel22:35 22 Aug '09  
Generalsame as other articles PinmemberDonsw14:54 15 Feb '09  
GeneralDeadlock PinmemberMrTaikandi4:56 10 Jan '09  
Thanks for your article. But it seems that your code could cause dead-lock, because of locking class type.
http://msdn.microsoft.com/en-us/library/ms998558.aspx[^]
 
Mohammadreza Taikandi

GeneralHere's a better article PinmemberPIEBALDconsult5:47 24 Apr '08  
GeneralThanks for your article but I'm confused Pinmemberal13n1:34 24 Apr '08  
GeneralRe: Thanks for your article but I'm confused PinmemberJoakim Rosendahl5:02 24 Apr '08  
QuestionWhats the use of the volatile modifier in your code? Pinmember leppie 21:49 23 Apr '08  
AnswerRe: Whats the use of the volatile modifier in your code? Pinmemberjohannesnestler23:59 23 Apr '08  
AnswerRe: Whats the use of the volatile modifier in your code? PinmemberNick Butler1:51 24 Apr '08  
GeneralRe: Whats the use of the volatile modifier in your code? Pinmember leppie 5:33 24 Apr '08  
AnswerRe: Whats the use of the volatile modifier in your code? PinmemberNick Butler22:17 24 Apr '08  
GeneralRe: Whats the use of the volatile modifier in your code? Pinmemberstockmonger4:49 8 Jun '11  
Generaloops PinmemberNick Butler1:40 27 Apr '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 24 Apr 2008
Article Copyright 2008 by Sandeep Aparajit
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid