Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What real (i.e. practical) difference exist between a static class and a singleton pattern?

Both can be invoked without instantiation, both provide only with one "instance" and neither of them is threadsafe. Is there any other difference?

share|improve this question
Depending on the language implementation and your usage patterns, a Singleton might be less efficient due to the overhead of calling the getInstance() method each time you want to use it (although probably in most cases it doesn't matter). – too much php Feb 6 '09 at 8:45
There are lot of answers already. It is actually a singleton object where static methods are just functions, a non-OO entity. – fastcodejava Jan 16 '11 at 3:04
1  
Depends upon the implemenation.. csharpindepth.com/Articles/General/Singleton.aspx – Mark Jul 14 '11 at 9:48

19 Answers

up vote 207 down vote accepted

What makes you say that either a singleton or a static method isn't thread-safe? Usually both should be implemented to be thread-safe.

The big difference between a singleton and a bunch of static methods is that singletons can implement interfaces (or derive from useful base classes, although that's less common IME), so you can pass around the singleton as if it were "just another" implementation.

share|improve this answer
Well, if you prefer it, neither is inherently threadsafe, you have to make them be threadsafe, both of them, so no difference there. – Jorge Córdoba Feb 6 '09 at 8:20
17  
Can you give an example of something which is inherently threadsafe, other than immutable types? – Jon Skeet Feb 6 '09 at 8:23
Even some immutable types are not thread safe if they are copies themselves of a mutable object. – WolfmanDragon Feb 6 '09 at 8:25
Jon, by "inherently" I mean from the programmer/user point of view. Lots of system calls or library classes are threadsafe so I don't have to worry about it... but you're right, I can't think of anything – Jorge Córdoba Feb 6 '09 at 8:32
11  
To Skeet: People saying that singleton isn't threadsafe mean that a singleton is shared between threads unnecessarily all the time, while stack objects get shared when you need them to, which means you don't have to do unneeded synchronization. – Iraimbilanja Feb 6 '09 at 10:20
show 2 more comments

The true answer is by Jon Skeet, on another forum here.

A singleton allows access to a single created instance - that instance (or rather, a reference to that instance) can be passed as a parameter to other methods, and treated as a normal object.

A static class allows only static methods.

share|improve this answer
56  
I'm glad to see I'm consistent :) – Jon Skeet Feb 6 '09 at 8:23
1  
And it's over three years old. – Kieran Senior Feb 6 '09 at 8:24
6  
Why would you pass a Singleton as a parameter, though, if you can access the same instance from just about anywhere by calling the static getInstance() method? – Henrique Ordine Jul 1 '12 at 9:58
2  
@HenriqueOrdine So it can fit into existing code and provide an interface? – nus Jul 12 '12 at 10:54
I see, yes. I don't see why you can't pass a Class with a bunch of static methods as a parameter though, in that case, as you can still instantiate these Classes. – Henrique Ordine Jul 12 '12 at 13:51
show 10 more comments

A static class is one that has only static methods, for which a better word would be "functions". The design style embodied in a static class is purely procedural.

Singleton, on the other hand, is a pattern specific to OO design. It is an instance of an object (with all the possibilities inherent in that, such as polymorphism), with a creation procedure that ensures that there is only ever one instance of that particular role over its entire lifetime.

share|improve this answer
polymorphism doesn't come into play with singletons at all – Iraimbilanja Feb 6 '09 at 9:59
12  
So you think. I think differently. ;) For instance, imagine a singleton factory that returns an interface. You know you're getting an ISingleton (and it's the same one forever) but not necessarily which implementation. – Morendil Feb 6 '09 at 22:39
  1. Singleton object stores in Heap but, static object stores in stack
  2. We can clone the object of Singleton but, we can not clone the static class object
  3. Singleton class follow the OOP(object oriented principles) but not static class
  4. we can implement interface with Singleton class but not with Static class.
share|improve this answer
2  
Out of curiosity, does anybody care whether the objects are stored in heap or stack nowadays? :) – Ε Г И І И О Dec 20 '12 at 4:37
20  
Yes. Interviewers do. :) – Sandeep Jan 11 at 9:16
2  
If an interviewer asks that question you should ask them if, before prepping for the interview they had any idea. If they say "yes" then follow up asking when the last time they used that difference to determine the code they would write. If they don't offer you the job because of your questions, be grateful that you won't have to work there. – Andrew Steitz Apr 30 at 18:03

The Singleton pattern has several advantages over static classes. First, a singleton can extend classes and implement interfaces, while a static class cannot (it can extend classes, but it does not inherit their instance members). A singleton can be initialized lazily or asynchronously while a static class is generally initialized when it is first loaded, leading to potential class loader issues. However the most important advantage, though, is that singletons can be handled polymorphically without forcing their users to assume that there is only one instance.

share|improve this answer

In singleton pattern you can create the singleton as an instance of a derived type, you can't do that with a static class.

Quick Example:

if( useD3D )
    IRenderer::instance = new D3DRenderer
else
    IRenderer::instance = new OpenGLRenderer
share|improve this answer
22  
It's not really a singleton pattern, looks more like factory to me. – vava Feb 6 '09 at 9:51
5  
Not really, the fundamental difference between the two is that the Singleton will "cache" its single object and keep returning (a reference to) the same one. The Factory pattern will create new instances. – Mystic Feb 6 '09 at 10:00
5  
Then it's proxy-singleton :) – vava Feb 6 '09 at 10:02
1  
Hmm, I know this variety of the Singleton as MonoState. – Huppie Aug 16 '09 at 16:00

static classes should not do anything need state, it is useful for putting bunch of functions together i.e Math (or Utils in projects). So the class name just give us a clue where we can find the functions and there's nothing more.

Singleton is my favorite pattern and use it to manage something at a single point. It's more flexible than static classes and can maintain state. It can implement interfaces, inherit from other classes and allow inheritance.

My rule for choosing between static and singleton:

If there are bunch of functions should be kept together, then static is the choice. Anything else which needs single access to some resources, could be implemented singleton.

share|improve this answer
1  
Why should static classes not do anything which needs to save state? – Trisped Oct 9 '12 at 21:24
@Trisped: You have neither precise control over initialization nor finalization. – Xaqron Jan 3 at 23:55

Singleton's are instantiated, it's just there's only one instance ever instantiated, hence the single in Singleton.

A static class can't be instantiated by anything other than itself.

share|improve this answer

I'm not a great OO theorist, but from what I know, I think the only OO feature that static classes lack compared to Singletons is polymorphism. But if you don't need it, with a static class you can of course have inheritance ( not sure about interface implementation ) and data and function encapsulation.

The comment of Morendil, "The design style embodied in a static class is purely procedural" I may be wrong, but I disagree. In static methods you can access static members, which would be exactly the same as singleton methods accessing their single instance members.

edit:
I'm actually thinking now that another difference is that a Static class is instantiated at program start* and lives throughout the whole life span of the program, while a singleton is explicitly instantiated at some point and can be destroyed also.

* or it may be instantiated at first use, depending on the language, I think.

share|improve this answer
5  
Yes, everyone else seems to ignore the fact that a class with static methods can also have private static fields which it can still use to maintain state (and expose some of them to the client code via public static setters/getters). – user289463 Feb 9 '12 at 14:14

Another advantage of a singleton is that it can easily be serialized, which may be necessary if you need to save its state to disc, or send it somewhere remotely.

share|improve this answer

To expand on Jon Skeet's Answer

The big difference between a singleton and a bunch of static methods is that singletons can implement interfaces (or derive from useful base classes, although that's less common IME), so you can pass around the singleton as if it were "just another" implementation.

Singletons are easier to work with when unit testing a class. Wherever you pass singletons as a parameter (constructors, setters or methods) you can instead substitute a mocked or stubbed version of the singleton.

share|improve this answer

Well a singleton is just a normal class that IS instantiated but just once and indirectly from the client code. Static class is not instantiated. As far as I know static methods (static class must have static methods) are faster than non-static.

Edit:
FxCop Performance rule description: "Methods which do not access instance data or call instance methods can be marked as static (Shared in VB). After doing so, the compiler will emit non-virtual call sites to these members which will prevent a check at runtime for each call that insures the current object pointer is non-null. This can result in a measurable performance gain for performance-sensitive code. In some cases, the failure to access the current object instance represents a correctness issue."
I don't actually know if this applies also to static methods in static classes.

share|improve this answer

In many cases, these two have no practical difference, especially if the singleton instance never changes or changes very slowly e.g. holding configurations.

I'd say the biggest difference is a singleton is still a normal Java Bean as oppose to a specialized static-only Java class. And because of this, a singleton is accepted in many more situations; it is in fact the default Spring Framework's instantiation strategy. The consumer may or may not know it's a singleton being passed around, it just treat it like a normal Java bean. If requirement changes and a singleton needs to become a prototype instead, as we often see in Spring, it can be done totally seamlessly without a line of code change to the consumer.

Someone else has mentioned earlier that a static class should be purely procedural e.g. java.lang.Math. In my mind, such a class should never be passed around and they should never hold anything other than static final as attributes. For everything else, use a singleton since it's much more flexible and easier to maintain.

share|improve this answer

We have our DB framework that makes connections to Back end.To Avoid Dirty reads across Multiple users we have used singleton pattern to ensure we have single instance available at any point of time.

In c# a static class cannot implement an interface. When a single instance class needs to implement an interface for a business contracts or IoC purposes, this is where I use the Singleton pattern without a static class

Singleton provides a way to maintain state in stateless scenarios

Hope that helps you..

share|improve this answer

One notable difference is differed instantiation that comes with Singletons.

With static classes, it gets created by the CLR and we have not control on it. with singletons, the object gets instantiated on the first instance it's tried to be accessed.

share|improve this answer
  1. Lazy Loading
  2. Support of interfaces, so that separate implementation can be provided
  3. Ability to return derived type (as a combination of lazyloading and interface implementation)
share|improve this answer

When I want class with full functionality, e.g. there are many methods and variables, I use singleton;

If I want class with only one or two methods in it, e.g. MailService class, which has only 1 method SendMail() I use static class and method.

share|improve this answer

To me the biggest difference is that, when you want to use a Static Method of a class, you can just do this: MyClass.myStaticMethod()

while to use a Singleton's methods you have to do this: MySingleton.getInstance().mySingletonMethod()

Not to mention the overhead of creating the private constructor and the static getInstance() method of Singletons.

As to both been able to be invoked without instantiation, that's not entirely true. A Singleton has to be instantiated once.

share|improve this answer

One main advantage for Singleton : Polymorphism Eg : create instance using a Class factory( Say based on some configuration), and we want this object to be really singleton.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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