Here is the question:
Implement a singleton design pattern as a template such that, for any given class Foo, you can call Singleton::instance() and get a pointer to an instance of a singleton of type Foo. Assume the existence of a class Lock which has acquire() and release() methods. How could you make your implementation thread safe and exception safe?
My analysis:
as Joshua Bloch points out in "effective java", the better ways to implement a singleton class is enum and public static factory method. Combining volatile and synchronized is the way I know to make it thread safe and lazy initialization as follows
public class myS{
private static volatile final _ins = null;
private myS(){};
public static myS getIns(){
synchronized(){
if(_ins==null) _ins = new myS();
}
return _ins;
}
}
At this moment, I am a little confused to make a singleton template. My understanding is that we either have an interface with generic type or an abstract class. As long as the clients implement them, they are singleton. So, my guess solution is as follows:
public interface singleton<T>{
public T instance();
}
public class Foo implements singleton<T>{
private static volatile final Foo _ins = null;
public static Foo instance(){
synchronized(this)
if(_ins==null){
_ins = new Foo();
}
}
}
}
static instance()method doesn't actually implement the interface'sinstance()method... This code and requirement doesn't make any sense. Rather look into the abstract factory and/or flyweight patterns. – BalusC Aug 8 '11 at 19:30