Among all design patterns, Singleton pattern is the most widely used and easiest pattern. It is very useful when combines with other design patterns like MVC. Singleton pattern provides 2 main features:
1. Only one class instance can be instantiated at any time.
2. The class has a global access point.