Re: when shall i go for a Singleton class?
Posted By:
Anand_Rajasekar
Posted On:
Thursday, April 11, 2002 04:39 PM
In a nutshell use a singleton class for helper functions and when you need a one place data store.
Re: when shall i go for a Singleton class?
Posted By:
Bozidar_Dangubic
Posted On:
Wednesday, April 10, 2002 07:24 AM
use singleton when you need singleton. use other patterns when you need them. singleton you use when you need a single instance of a class in the application.