, getInstance() . Singleton, "Bill Pugh" ( ):
public class Singleton {
private Singleton() {
}
private static class SingletonHolder {
public static final Singleton INSTANCE = new Singleton();
}
public static Singleton getInstance() {
return SingletonHolder.INSTANCE;
}
}
Android , "" Context. , , . , static Context ( , Context), , Activity .