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?
|
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? |
|||
|
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. |
|||||||||||||||
|
|
The true answer is by Jon Skeet, on another forum here.
|
|||||||||||||||||||
|
|
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. |
|||||||
|
|
|||||||||||||
|
|
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. |
|||
|
|
|
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:
|
|||||||||||||||||
|
|
My rule for choosing between If there are bunch of functions should be kept together, then |
|||
|
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. |
|||
|
|
|
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: * or it may be instantiated at first use, depending on the language, I think. |
|||||
|
|
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. |
|||
|
|
|
To expand on Jon Skeet's Answer
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. |
|||
|
|
|
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: |
||||
|
|
|
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. |
|||
|
|
|
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.. |
||||
|
|
|
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. |
|||
|
|
|
|||
|
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
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:45singletonobject wherestaticmethods are just functions, a non-OO entity. – fastcodejava Jan 16 '11 at 3:04