Skip to content

Instantly share code, notes, and snippets.

@Climber24
Created January 27, 2017 15:50
Show Gist options
  • Save Climber24/c22322f6f7be5be73580097a99a5ffda to your computer and use it in GitHub Desktop.
Save Climber24/c22322f6f7be5be73580097a99a5ffda to your computer and use it in GitHub Desktop.
public class Singleton
{
private static Singleton singletone = new Singleton();
private static int counter = 0;
private Singleton() {}
static Singleton getInstance() {
return singletone;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment