Recently I have came across a question what is the difference between Static and Singleton classes. So I thought it will be a good idea to share blog post about it.
- A singleton classes allowed to create a only single instance or particular class. That instance can be treated as normal object. You can pass that object to a method as parameter or you can call the class method with that Singleton object. While static class can have only static methods and you can not pass static class as parameter.
- We can implement the interfaces with the Singleton class while we can not implement the interfaces with static classes.
- We can clone the object of Singleton classes we can not clone the object of static classes.
- Singleton objects stored on heap while static class stored in stack.
- A Singleton class can extend the classes(support inheritance) while static class can not inherit classes.
- Singleton class can initialize lazy way while static class initialize when it loaded first
- Static classes are sealed class while Single ton classes are not sealed.
If you don’t know what is Singleton class then you can find more information from following link.