Skip to content

Instantly share code, notes, and snippets.

@doubledouble
Last active October 6, 2015 13:08
Show Gist options
  • Save doubledouble/2998124 to your computer and use it in GitHub Desktop.
Save doubledouble/2998124 to your computer and use it in GitHub Desktop.
SingleInstance原来可以这么写
public class SingleInstance {
private static class InstanceHolder {
public static final SingleInstance instance = new SingleInstance();
}
public static SingleInstance getInstance() {
return InstanceHolder.instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment