Skip to content

Instantly share code, notes, and snippets.

@IamLizu
Last active September 29, 2019 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IamLizu/7dbbec1d485a035a2e746272cb99610e to your computer and use it in GitHub Desktop.
Save IamLizu/7dbbec1d485a035a2e746272cb99610e to your computer and use it in GitHub Desktop.
public static synchronized Singleton getInstance() {
// checks if instance already created
if (Instance == null) {
// if not create an instance
Instance = new Singleton();
}
// return the created instance on all subsequent calls
return Instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment