Skip to content

Instantly share code, notes, and snippets.

@IamLizu
Created September 29, 2019 16:29
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/11a2715761e6728d8fe4cb69207dc6b3 to your computer and use it in GitHub Desktop.
Save IamLizu/11a2715761e6728d8fe4cb69207dc6b3 to your computer and use it in GitHub Desktop.
public class Singleton {
// holds created instance of the singleton class
private static Singleton Instance = new Singleton();
// private constructor
private Singleton () {}
public static Singleton getInstance() {
// 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