Skip to content

Instantly share code, notes, and snippets.

@oznus
Last active February 15, 2016 00:22
Show Gist options
  • Save oznus/935c75da5ccb3f56f339 to your computer and use it in GitHub Desktop.
Save oznus/935c75da5ccb3f56f339 to your computer and use it in GitHub Desktop.
LazySingleton
public class LazySingleton {
private LazySingleton() {
}
private static LazySingleton sInstance;
public static LazySingleton INSTANCE() {
if (sInstance == null) {
sInstance = new LazySingleton();
}
return sInstance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment