Skip to content

Instantly share code, notes, and snippets.

@oznus
Last active February 15, 2016 01:40
Show Gist options
  • Select an option

  • Save oznus/fee1995b86aaee970fa5 to your computer and use it in GitHub Desktop.

Select an option

Save oznus/fee1995b86aaee970fa5 to your computer and use it in GitHub Desktop.
public class LazySingleton {
private static class Loader {
static volatile LazySingleton INSTANCE = new LazySingleton();
}
private LazySingleton () {}
public static LazySingleton getInstance() {
return Loader.INSTANCE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment