Skip to main content

Posts

Showing posts from December, 2015

How to write singleton class in java

Singleton class   public class MySingleton { private MySingleton(){ System.out.println("Creating new Instance"); }