gistfile1.txt public class Singleton { private Singleton() { } private volatile static Singleton instance = null; public static Singleton getInstance() { if(instance == null) { synchronized(this) { if(instance == null) { instance = new Sing
public class Singleton { private Singleton() { } private volatile static Singleton instance = null; public static Singleton getInstance() { if(instance == null) { synchronized(this) { if(instance == null) { instance = new Singleton(); } } } return instance; } }