vote up 57 vote down star
49

The Singleton pattern is a fully paid up member of the GoF Patterns Book but lately seems rather orphaned by the developer world. I still use quite a lot of singletons, especially for Factory classes, and while you have to be a bit careful about multithreading issues (like any class actually) fail to see why they are so awful.

This site especially seems to assume that everyone agrees that Singletons are evil. Why?

flag
2  
There's a lot of 'cons' in the answers, but I'd also like to see some good examples of when the pattern is good, to contrast with the bad... – DGM Oct 15 '08 at 6:03
show 4 more comments

33 Answers

prev 1 2
vote up 9 vote down
  1. It is easily used (abused) as a global variable.
  2. Classes that depend on singletons are relatively harder to unit test in isolation.
link|flag
vote up 2 vote down

Because they are basically object oriented global variables, you can usually design your classes in such a way so that you don't need them.

link|flag
vote up 9 vote down

some people consider them stupid :)

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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