Singleton Example

Singleton Pattern

The Singleton Pattern is a creational pattern, it is used to restrict Object creation for a Class to only one instance.

It typically contains a private Singelton constructor, a private instance of the Object created and a public getInstance() method that returns the Singleton Object.

The difference between the Singleton and a static class is a Singleton object can implement an interface a static class cannot.