Skip to content

Instantly share code, notes, and snippets.

@amano41
Created May 7, 2014 04:49
Show Gist options
  • Save amano41/eda80acfe68a9f807e7a to your computer and use it in GitHub Desktop.
Save amano41/eda80acfe68a9f807e7a to your computer and use it in GitHub Desktop.
Singleton 遅延初期化ホルダー イディオム
public class Singleton {
private Singleton(){}
public static Singleton getInstance() {
return SingletonHolder.instance;
}
private static class SingletonHolder {
static final Singleton instance = new Singleton();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment