Skip to content

Instantly share code, notes, and snippets.

@hu2di
Last active April 10, 2017 02:04
Show Gist options
  • Save hu2di/35cdad3b19f16965b4da4a94bd4caef2 to your computer and use it in GitHub Desktop.
Save hu2di/35cdad3b19f16965b4da4a94bd4caef2 to your computer and use it in GitHub Desktop.
Java Design Pattern: Singleton
public class Singleton {
private static final Singleton instance = new Singleton();
private Singleton() {
}
public static Singleton getInstance() {
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment