You're closer to the usual way that the singleton pattern is implemented in Java than your colleague. Please, take a look at Wikipedia. There you will find the 3 most common Java implementations:
Traditional simple way
public class Singleton {
private static final Singleton INSTANCE = new Singleton();
// Private constructor prevents instantiation from other classes
private Singleton() {}
public static Singleton getInstance() {
return INSTANCE;
}
}
The "solution of Bill Pugh"
public class Singleton {
// Private constructor prevents instantiation from other classes
private Singleton() {}
/**
* SingletonHolder is loaded on the first execution of Singleton.getInstance()
* or the first access to SingletonHolder.INSTANCE, not before.
*/
private static class SingletonHolder {
public static final Singleton INSTANCE = new Singleton();
}
public static Singleton getInstance() {
return SingletonHolder.INSTANCE;
}
}
Traditional simple way using synchronization
public class Singleton {
// volatile is needed so that multiple threads can reconcile the instance
// semantics for volatile changed in Java 5.
private volatile static Singleton singleton;
private Singleton() {}
// synchronized keyword has been removed from here
public static Singleton getSingleton() {
// needed because once there is singleton available no need to acquire
// monitor again & again as it is costly
if (singleton == null) {
synchronized (Singleton.class) {
// this is needed if two threads are waiting at the monitor at the
// time when singleton was getting instantiated
if (singleton == null) {
singleton = new Singleton();
}
}
}
return singleton;
}
}
Neither of them make use of a separated initObject() method (initialization is supposed to be inside the private constructor). Also notice that if you have a separated, public initObject() method, you may have multi-threading issues...
BTW, personally I rather use the "Bill Pugh" alternative, but the 3 ways are valid.
Edit After the kind Esko comment, I'm adding the following implementation, which is not available on Wikipedia. I just would like to add that 1) The singleton instance is not lazily created like the 3 options above; 2) Since it is a enum, you cannot extend any class; and 3) It is very, very weird. But it seems to be quite hyped on the Java community, so it is here:
Enum way
public enum Singleton {
INSTANCE;
Singleton() {
/* Your init code goes here */
}
}