Skip to content

Instantly share code, notes, and snippets.

@chowaikong
Last active February 6, 2017 13:04
Show Gist options
  • Save chowaikong/b21d679321ff5c8732cb3aabbb6de292 to your computer and use it in GitHub Desktop.
Save chowaikong/b21d679321ff5c8732cb3aabbb6de292 to your computer and use it in GitHub Desktop.
public class Singleton {
private Singleton() {
}
public static Singleton getInstance() {
return SingletonViewHolder.sInsatnce;
}
private static class SingletonHolder {
private static final Singleton sInsatnce = new Singleton();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment