vote up 1 vote down star
1

Duplicate

What’s wrong with singleton?
Singletons: good design or a crutch?
Singleton: How should it be used
What is so bad about Singletons


You can find numerous reasons for using a Singleton over a Static class. But there must surely be some situations where it is better to use a static class before a Singleton. What are they?

flag

52% accept rate
2  
People abuse/overuse singletons, here's a 3rd option ... don't use either. – Chad Grant May 8 at 11:24
@Neil, there was nothing in the question that I could see that would indicate that it specifically relates to Java. – Patrick McDonald May 8 at 11:27
Well, it has to be something that has static classes – Neil Butterworth May 8 at 11:29
This effectively seems to be equivalent to previous questions, as I see it. If you feel otherwise, please just rollback my edit. – Noldorin May 8 at 11:32
This seems to be about static classes - a specific language feature. – Neil Butterworth May 8 at 11:32
show 3 more comments

5 Answers

vote up -2 vote down

It's always where you don't actually need to pass the singleton instance anywhere. For example, singleton will be useful if it implements some interface, you can't do it with a static class.

Remember, every Class instance is a singleton, managed by JVM. So static class is a singleton.

link|flag
vote up 1 vote down

Static class is better for when you don't need to change the implementation. With a Singleton, you can have an interface with various implementations. A Static class, can only be an implementation.

link|flag
Interesting point. Can there ever be a case for not having flexibility for modification if the cost is trivial? – Preet Sangha May 8 at 11:36
Cost is relative. – Joshua May 8 at 12:59
vote up 1 vote down

If your class doesn't store any state, then use a Static class.

If it stores state and you require a single instance, then (maybe) use a Singleton.

Otherwise use a regular class.

link|flag
vote up 2 vote down

Having fought with the testability of consumers of static classes over the years I can honestly say that they are the work of evil minds. Seriously though, I'd use static classes for extention methods in C# but not really anywhere else.

link|flag
vote up 2 vote down

You can use static class when:

1) all its methods are utilities (nice example - class Math)

2) you don't want to deal with preserving your instance from garbage collector (in applets), but I would better use singleton there

3) you are absolutely sure that it wouldn't become stateful in the future and you are sure that you will always need only one instance of that class

If you are using singleton and in one moment you realize that you need several instances then your singleton easily can be transformed to multitone, but you'll have a problem with static class

link|flag

Your Answer

Get an OpenID
or

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