Search Results

5
votes

Are there any viable alternatives to the GOF Singleton Pattern?

The finest solution I have came across is using the factory pattern to construct instances of your classes. Using the pattern, you can assure that there is only one instance of a class tha …