0

Possible Duplicate:
Singleton: How should it be used

I want to know what is the real time scenario when one should use singleton design pattern.

cs95
  • 379,657
  • 97
  • 704
  • 746

1 Answers1

0

When you have an object that's expensive to create, and there is logical that only one instance should exist. It will come to you :)

Geo
  • 93,257
  • 117
  • 344
  • 520