Skip to content

Instantly share code, notes, and snippets.

@DavidTPate
Created February 17, 2014 01:48
Show Gist options
  • Save DavidTPate/9043324 to your computer and use it in GitHub Desktop.
Save DavidTPate/9043324 to your computer and use it in GitHub Desktop.
public class OnDemandSingleton {
private OnDemandSingleton() { }
private static class OnDemandSingletonHolder {
public static final OnDemandSingleton instance = new OnDemandSingleton();
}
public static OnDemandSingleton getInstance() {
return OnDemandSingletonHolder.instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment