Skip to content

Instantly share code, notes, and snippets.

@nex3z
Created November 4, 2016 09:50
Show Gist options
  • Save nex3z/6de95f86050ad45b399a5176b7fd2933 to your computer and use it in GitHub Desktop.
Save nex3z/6de95f86050ad45b399a5176b7fd2933 to your computer and use it in GitHub Desktop.
public class Singleton {
private Singleton() {}
private static class Holder {
private static final Singleton INSTANCE = new Singleton();
}
public static Singleton getInstance() {
return Holder.INSTANCE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment