Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The Singleton pattern is used all the time, even if you don't realize you're using it. For example, if you have some kind of class that keeps the total number of points in a game, you want only a single instance of that total. It doesn't make any sense to have two totals where the game records only a single total score, like you find in a single-player pinball game. Likewise, if you create a music application, you want the application to play only one tune at a time, and so you want only a single instance of the class that actually plays the music. In fact, most applications have at least some feature where you want to make sure that there's only a single instance, and that's where you'll want to use the Singleton design pattern.
In a nutshell, the Singleton has two key features:
One and only one instance of the class can be instantiated at any one time.
The class must have a single, global access point.