首頁標簽Singleton

單例模式第一版

設計模式系列特徵構造方法私有化靜態成員物件獲取單例物件的方法分類懶漢模式(執行緒不安全)餓漢模式(執行緒安全)程式碼實現懶漢模式:public class Singleton { private Singleton() {} //私...

Top