Skip to content

Instantly share code, notes, and snippets.

@bskim45
Created November 21, 2014 16:28
Show Gist options
  • Save bskim45/e773960dee35e0a043c2 to your computer and use it in GitHub Desktop.
Save bskim45/e773960dee35e0a043c2 to your computer and use it in GitHub Desktop.
Simlple Java Singletone Pattern
public class Singletone {
private static Singletone instance = null;
protected Singletone() {
//to prohibit instantiation.
}
public static Singletone getInst() {
if(instance == null) {
instance = new Singletone();
}
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment