Tag Archives: doubleCheckedLocking

Thread Safe Singleton Examples

The solution of Bill Pugh public class Singleton { // Private constructor prevents instantiation from other classes private Singleton() { }   /** * SingletonHolder is loaded on the first execution of Singleton.getInstance() * or the first access to SingletonHolder.INSTANCE, … Continue reading

Posted in java | Tagged , , , , | 1 Comment