Last active
January 3, 2016 22:59
University of Maryland Computer Science researcher Bill Pugh suggested this way while implementing singleton in Java,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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