public class SingletonDemo {
private SingletonDemo() {
// do something...
}
public static SingletonDemo getInstance() {
return SingletonHolder.instance;
}
private static class SingletonHolder {
private static final SingletonDemo instance = new SingletonDemo();
}
public void function1()....
public void function2()....
}
2009年7月22日 星期三
Design Pattern - Singleton
良葛格已分享許多方法與範例, 在此提供 Inner Class 的方法
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言