Skip to content

Instantly share code, notes, and snippets.

@bryandh
Last active October 7, 2015 19:35
Show Gist options
  • Save bryandh/42f2dc8c9940de6c32f5 to your computer and use it in GitHub Desktop.
Save bryandh/42f2dc8c9940de6c32f5 to your computer and use it in GitHub Desktop.
Simple Singleton example
public class Singleton {
private static Singleton instance;
private Singleton(){
// empty by design
}
public static Singleton getInstance(){
if(instance == null)
instance = new Singleton();
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment