使用說明
1、飽漢是變種最多的單例模式。
2、飽漢模式的核心是懶惰載入。優點是啟動速度快,節省資源,直到實例首次存取為止,需要初始化的案例小缺點是寫起來麻煩,缺點是線程不安全,if語句有競爭條件。
實例
//饱汉 //UnThreadSafe public class Singleton1 { private static Singletion1 singleton = null; private Singleton1() { } public static Singleton1 getInstance() { if (singleton == null) { singleton = new Singleton1(); } return singleton; } }
以上是java單例中的飽漢模式如何實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!