設計模式之單例模式

2021-07-24 10:09:32 字數 709 閱讀 7343

使用步驟:

1、構造方法私有化

private realmhelper()
2、自定義靜態變數
private static realmhelper helper = null;
3、提供例項化方法1、 在getinstance方法上加同步鎖
public static synchronized realmhelper getinstance1() 

}return helper;

}

2、雙重檢查鎖定 執行緒安全 雙重檢查
public static realmhelper getinstance2() 

}return helper;

}

3、這種比上面1、2都好一些既實現了執行緒安全,又避免了同步帶來的效能影響。
public static final realmhelper getinstance3() 

private static class lazyholder

1、直接例項化物件
private static realmhelper helpers = new realmhelper();

//靜態工廠方法

public static final realmhelper getinstance4()

設計模式之單例模式

前一段時間買了一本秦小波寫的 設計模式之禪 網上對這書的評價很高。現在還沒有看很多,但是有些地方頗有感觸,也並不是所有的地方都能看懂,但是會慢慢研究的。自己對於設計模式的感覺就是乙個字 牛!感覺會23種設計模式並且會熟練運用的人,真的就是大師級的牛人了,設計模式是乙個專案主管或者架構師一定要會的東西...

設計模式之單例模式

package com.xie.singleton public class singleton 提供乙個共有的靜態的入口方法 public static singleton getinstance 懶漢式 延遲載入 提供乙個私有的靜態的成員變數,但不做初始化 private static sing...

設計模式之 單例模式

單例模式 singleton 保證乙個類僅有乙個例項,並提供乙個訪問它的全域性訪問點。單例模式 單件模式 使用方法返回唯一的例項 public class singleton private static singleton instance public static singleton geti...