I have understood the Singleton (Design patterns) and how to used it.
class Singleton { private Singleton() { }
private static Singleton _instance;