0
嗨可以請別人告訴我如何實例化下面給出的單例類的正確方法?如何實例化Bill Pugh方法中實現的單例類?
public class BillPughSingleton {
private BillPughSingleton(){}
private static class SingletonHelper{
private static final BillPughSingleton INSTANCE = new BillPughSingleton();
}
public static BillPughSingleton getInstance(){
return SingletonHelper.INSTANCE;
}
}
您不能'Classloader'做這項工作給你。 – Flown
我不太明白你在這裏問的問題。你有一個完美的實現單身模式在這裏(雖然內部類SingletonHelper不是真的需要)。你能進一步描述你遇到的問題嗎? –