Skip to content

Instantly share code, notes, and snippets.

@lzhoucs
Last active December 23, 2015 02:49
Show Gist options
  • Save lzhoucs/df877c52f3800c8db1f8 to your computer and use it in GitHub Desktop.
Save lzhoucs/df877c52f3800c8db1f8 to your computer and use it in GitHub Desktop.
A singleton pattern from Spring in Action 3rd
public class Stage {
private Stage() {
}
// Lazily loads instance
privatestaticclassStageSingletonHolder{
staticStageinstance=newStage();
}
public staticStagegetInstance(){
returnStageSingletonHolder.instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment