Skip to content

Instantly share code, notes, and snippets.

@ananthchelladurai
Last active January 3, 2016 22:59
University of Maryland Computer Science researcher Bill Pugh suggested this way while implementing singleton in Java,
public class SingletonBillPughExample {
private SingletonBillPughExample() {
// private constructor
}
private static class SingletonHolder {
private static final SingletonBillPughExample INSTANCE = new SingletonBillPughExample();
}
public static SingletonHolder getInstance() {
return SingletonHolder.INSTANCE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment