亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++單例模式怎么實現

c++
小億
100
2023-10-13 10:12:07
欄目: 編程語言

在C++中,可以通過以下幾種方式來實現單例模式:

  1. 餓漢式(Eager Initialization):
class Singleton {
private:
static Singleton* instance;
Singleton() {} // 私有構造函數,防止類外實例化對象
public:
static Singleton* getInstance() {
return instance;
}
};
Singleton* Singleton::instance = new Singleton();

在該實現方式中,單例對象在程序啟動時就被創建出來,因此稱為“餓漢式”。在調用getInstance()方法時,直接返回已創建好的實例。

  1. 懶漢式(Lazy Initialization):
class Singleton {
private:
static Singleton* instance;
Singleton() {} // 私有構造函數,防止類外實例化對象
public:
static Singleton* getInstance() {
if (instance == nullptr) {
instance = new Singleton();
}
return instance;
}
};
Singleton* Singleton::instance = nullptr;

在該實現方式中,單例對象在第一次調用getInstance()方法時才被創建出來,因此稱為“懶漢式”。通過判斷instance是否為nullptr,來判斷是否已經創建實例,如果是則創建實例,如果不是則直接返回實例。

  1. 雙檢鎖(Double-Checked Locking):
class Singleton {
private:
static Singleton* instance;
static std::mutex mtx;
Singleton() {} // 私有構造函數,防止類外實例化對象
public:
static Singleton* getInstance() {
if (instance == nullptr) {
std::lock_guard<std::mutex> lock(mtx);
if (instance == nullptr) {
instance = new Singleton();
}
}
return instance;
}
};
Singleton* Singleton::instance = nullptr;
std::mutex Singleton::mtx;

在該實現方式中,通過使用雙重檢查鎖定來保證線程安全。首先判斷instance是否為nullptr,如果是則加鎖,再次判斷instance是否為nullptr,如果是則創建實例。通過使用std::mutex來實現線程同步。

以上是幾種常見的單例模式實現方式,具體選擇哪種方式取決于實際需求和場景。

0
永泰县| 龙陵县| 剑河县| 望城县| 育儿| 花莲市| 酒泉市| 嘉义市| 吴堡县| 天门市| 公主岭市| 陵水| 贞丰县| 鄱阳县| 科技| 丹阳市| 加查县| 崇礼县| 来安县| 镇雄县| 邯郸县| 临沭县| 英德市| 兴文县| 尼木县| 大关县| 潮州市| 荣昌县| 武鸣县| 阳东县| 九龙坡区| 西昌市| 德安县| 兴化市| 巴马| 炎陵县| 枞阳县| 肃北| 丰都县| 浦东新区| 西贡区|