C# Design pattern interview questions with answers: - How Singleton is different from Static class?
- By Shiv Prasad Koirala in C#
- Jul 12th, 2013
- 91
- 0
- Singleton is a design pattern which solves the problem in a particular context (when we want that only one instance of an object can be created). Whereas static class is a concept where class will be defined with static keyword and all the members need to be strictly static
- Singleton pattern let us create the object of the class only once whereas we can't create the object of static class.
- Class which follows singleton pattern can implement other interfaces whereas static class cannot.
There is one more question normally asked during interviews "What you will prefer for sharing, static class or singleton pattern"
First of all both allows us to share, but I personally prefer singleton pattern because we can derive our singleton class from other interfaces and so get polymorphic feature.
Example: IPerson s=SingletonPerson.GetObject(PersonEnum.Male); //s is Male
: IPerson s=SingletonPerson.GetObject(PersonEnum.Female); //s is Female
Secondly Singleton class may contain some non-static members as well.
And most importantly we can control the life of a singleton object. It can be explicitly destroyed in between the application.
In case you are new to Design pattern I would suggest you to start reading Design pattern interview questions with answers from codeproject.com
Also do read this design pattern interview question with answer:- Which design patterns have your used in your project ?
Here you can go through the video on Factory Design Pattern
For more Interview Questions on Singleton and Software Architecture tutorial :-
Shiv Prasad Koirala
Visit us @ www.questpond.com or call us at 022-66752917... read more

- By Shiv Prasad Koirala
- Sep 12th, 2013
- 82
- 0
What is Jquery ? ( ASP.NET Jquery interview questions with answers)

- By Shiv Prasad Koirala
- Jun 20th, 2012
- 74
- 0
C# threading interview questions: - What is the difference between

- By Shiv Prasad Koirala
- Feb 16th, 2013
- 61
- 0
.NET interview questions and answers: - What is TPL?

- By Shiv Prasad Koirala
- Jun 4th, 2012
- 32
- 0