8種單例模式

單例模式 八種設計模式說明 餓漢式(線程安全) 代碼 public class Hungry { private static Hungry hungry = new Hungry(); public Hungry(){} public static Hungry getInstance(){ return hungry; } } 測試代碼(如下
相關文章
相關標籤/搜索