Skip to content

Instantly share code, notes, and snippets.

@dec04
Forked from kevalpatel2106/SingletonClass.java
Created May 25, 2020 05:04
Show Gist options
  • Save dec04/be6065ab1bf59f0ae172c815e51a11bb to your computer and use it in GitHub Desktop.
Save dec04/be6065ab1bf59f0ae172c815e51a11bb to your computer and use it in GitHub Desktop.
public class SingletonClass implements Serializable {
private static volatile SingletonClass sSoleInstance;
//private constructor.
private SingletonClass(){
//Prevent form the reflection api.
if (sSoleInstance != null){
throw new RuntimeException("Use getInstance() method to get the single instance of this class.");
}
}
public static SingletonClass getInstance() {
if (sSoleInstance == null) { //if there is no instance available... create new one
synchronized (SingletonClass.class) {
if (sSoleInstance == null) sSoleInstance = new SingletonClass();
}
}
return sSoleInstance;
}
//Make singleton from serialize and deserialize operation.
protected SingletonClass readResolve() {
return getInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment