vote up -4 vote down star

Possible Duplicates:
What’s wrong with singleton?
What is so bad about Singletons

I have a native iphone app with one singleton class that takes care of all communication errors. Once the errors have been resolved a notification will be triggered telling the app that it has been fixed.

Do you think this is a good example of using a singleton? If not, what are some places where singleton use makes sense?

I'm hoping for a more general discussion of the use of singletons, viewpoints on why you might not want to use them vs. patterns where the use of singletons makes sense.

flag

60% accept rate
If you are asking a question expecting a discussion on Singletons, then please do to bash or call uneducated those with a position opposite to yours. Are you interested on the debate or on having your point of view enforced? – jvanderh Jun 27 at 21:59
Edited to make question far less flamey, can we all discuss this nicely now? I think the discussion could be interesting. – Kendall Helmstetter Gelner Jun 27 at 22:08
stackoverflow.com/questions/86654/…, stackoverflow.com/questions/11831/…, stackoverflow.com/questions/137975/…, stackoverflow.com/questions/86582/… - and a lot more – Marc Gravell Jun 27 at 22:10
I strongly disagree with closing this question down. I think what is needed is a deep per-language discussion of Singletons, because there are some language dependent reasons why you may or may not want to use them. The concept is not as language agnostic as it first appears. So I would love to see a discussion on Singleton rooted around Objective-C examples and concerns. – Kendall Helmstetter Gelner Jun 28 at 2:42

closed as exact duplicate by Marc Charbonneau, John Saunders, mmyers, Jeff Atwood Jun 28 at 1:58

1 Answer

vote up 2 vote down check

Here's my take on singletons - I like them over the use of holding onto instances in some central place like the app delegate, only because if you put a number of instances in the AppDelegate then you have every class including AppDelegate.h, and therefore having compilation dependancies on every class thats included by the AppDelegate even if it's not being used. Using singletons you only include what you need.

The negative side of singletons to me is you have to include some extra stuff to write them correctly, and they can just hang around in memory which you have little enough of. You then also need to write extra code to rid yourself of a singleton when you are done with it.

One pattern that can work well is to have a singleton container that holds simpler instances of related classes - so the container only has to be the one written carefully, and can also be responsible for cleaning instances when they are not needed.

In the end you need some way to get to some central information the app stores. The ways are singletons, user defaults, a database (core data/SQLLite), or just keeping instances of stuff around in the app delegate. If you need to persist things anyway, why not just use the database or the user defaults (remember the latter is really truly for user settings and not just random app data!).

link|flag
Singletons don't have to stay around forever. They can be lazy-loaded and disposed when the last singleton user has released their ownership. Example: pastie.org/526834 – rpetrich Jun 28 at 1:58
Yes, and that was why I referred to clean up code - but that's more work to be done than the normal dealloction of objects when you are managing retain/releases correctly. I don't like using the pattern of having retain create a singleton for you, because I feel that is very misleading to potential users... something more like a factory class that gives you back a singleton. – Kendall Helmstetter Gelner Jun 28 at 2:21

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