單例模式 餓漢 懶漢

//餓漢式 class SingleInstance{ private SingleInstance(){//私有化構造方法 } private static SingleInstance s= new SingleInstance();//建立並私有靜態的本類對象 public static SingleInstance getSingleInstance(){//定義公有並靜態
相關文章
相關標籤/搜索