Skip to content

Instantly share code, notes, and snippets.

@linnykoleh
Created July 18, 2017 08:47
Show Gist options
  • Save linnykoleh/628cc19f15715a7b7a023509a910ae22 to your computer and use it in GitHub Desktop.
Save linnykoleh/628cc19f15715a7b7a023509a910ae22 to your computer and use it in GitHub Desktop.
public class LazySingleton {
private static LazySingleton instance;
private LazySingleton(){
}
public static LazySingleton getInstance(){
if(instance == null){
instance = new LazySingleton();
}
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment