How is a singleton different from a class filled with only static fields?
|
|
Almost every time I write a static class, I end up wishing I had implemented it as a non-static class. Consider:
Because of these two points, non-static classes make it possible to write more reliable unit tests for items that depend on them, among other things. A singleton pattern is only a half-step away from static classes, however. You sort of get these benefits, but if you are accessing them directly within other classes via `ClassName.Instance', you're creating an obstacle to accessing these benefits. Like ph0enix pointed out, you're much better off using a dependency injection pattern. That way, a DI framework can be told that a particular class is (or is not) a singleton. You get all the benefits of mocking, unit testing, polymorphism, and a lot more flexibility. |
|||
|
|
|
A singleton can be initialized lazily, for one. |
|||||||||||
|
|
The difference is language independent. Singleton is by definition: "Ensure a class has only one instance and provide a global point of access to it. " a class filled with only static fields is not same as singleton but perhaps in your usage scenario they provide the same functionality. But as JRL said lazy initiation is one difference. |
|||
|
|
|
Let's me sum up :) The essential difference is: The existence form of a singleton is an object, static is not. This conduced the following things:
Last but not least, whenever you are going to implement a singleton, please consider to redesign your idea for not using this God object (believe me, you will tend to put all the "interesting" stuffs to this class) and use a normal class named "Context" or something like that instead. |
|||
|
|
|
At least you can more easily replace it by a mock or a stub for unit testing. But I am not a big fan of singletons for exactly the reason you are describing : it are global variables in disguise. |
|||||||||||||||||||
|
|
A singleton is a class with just one instance, enforced. That class may have state (yes I know static variables hold state), not all of the member variables or methods need be static. A variation would be a small pool of these objects, which would be impossible if all of the methods were static. |
||||
|
|
|
A singleton class will have an instance which generally is one and only one per classloader. So it can have regular methods(non static) ones and they can be invoked on that particular instance. While a Class with only static methods, there is really no need in creating an instance(for this reason most of the people/frameworks make these kind of Util classes abstract). You will just invoke the methods on class directly. |
|||
|
|
|
The first thing that comes to mind is that if you want to use a class with only static methods and attributes instead of a singleton you will have to use the static initializer to properly initialise certain attributes. Example:
This will then execute at class load time which is probably not what you want. You have more control over this whole shebang if you implement it as a singleton. However I think using singletons is not a good idea in any case. |
|||
|
|
NOTE: The examples are in C#, as that is what I am more familiar with, but the concept should apply to Java just the same. Ignoring the debate on when it is appropriate to use Singleton objects, one primary difference that I am aware of is that a Singleton object has an instance that you can pass around. If you use a static class, you hard-wire yourself to a particular implementation, and there's no way to alter its behavior at run-time. Poor design using static class:
Alternatively, you could have your constructor take in an instance of a particular interface instead. In production, you could use a Singleton implementation of that interface, but in unit tests, you can simply mock the interface and alter its behavior to satisfy your needs (making it thrown some obscure exception, for example).
This is not to say that static classes are ALWAYS bad, just not a great candidate for things like file systems, database connections, and other lower layer dependencies. |
|||
|
|
|
One of the main advantages of singletons is that you can implement interfaces and inherit from other classes. Sometimes you have a group of singletons that all provide similar functionality that you want to implement a common interface but are responsible for a different resource. |
|||
|
|
|
Singleton Class : Singleton Class is class of which only single instance can exists per classloader. Helper Class (Class with only static fields/methods) : No instance of this class exists. Only fields and methods can be directly accessed as constants or helper methods. These few lines from this blog describes it nicely:
|
|||
|
|