Skip to content

Instantly share code, notes, and snippets.

@surajdubey
Created April 14, 2018 04:14
Show Gist options
  • Select an option

  • Save surajdubey/b9f98716c9b741953ac87a603681a95b to your computer and use it in GitHub Desktop.

Select an option

Save surajdubey/b9f98716c9b741953ac87a603681a95b to your computer and use it in GitHub Desktop.
class EagerSingleton {
private static EagerSingleton singletonInstance = new EagerSingleton();
public static EagerSingleton getInstance() {
return singletonInstance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment