国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

c++單例模式實現源碼

2019-11-14 09:16:00
字體:
來源:轉載
供稿:網友
#define _CRT_SECURE_NO_WARNINGS#include <iostream>using namespace std;class Instance{PRivate:	Instance(){}	/*私有化復制構造函數*/	Instance(const Instance&){}	/*私有化=操作符*/	Instance& Operator=(const Instance&){}public:	static Instance *getInstance()	{		return Singleton;	}public:	static Instance *Singleton;};/*初始化*/Instance *Instance::Singleton = new Instance;/*測試*/void test(){	Instance *p1 = Instance::getInstance();	Instance *p2 = Instance::getInstance();	if (p1 == p2)	{		cout << "p1 = p2" << endl;	}	else	{		cout << "p1 != p2" << endl;	}}int main() {	test();	system("pause");	return EXIT_SUCCESS;}
上一篇:C# 按鈕和標簽

下一篇:0014 異常處理

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 紫阳县| 乌兰县| 安义县| 珠海市| 青冈县| 平原县| 金坛市| 慈利县| 鸡西市| 衡水市| 城固县| 田东县| 雷波县| 崇文区| 乐东| 昆明市| 屯昌县| 宁晋县| 红河县| 万宁市| 涞水县| 石门县| 遂溪县| 呼伦贝尔市| 滦南县| 会昌县| 施甸县| 拉萨市| 晴隆县| 惠州市| 靖安县| 烟台市| 许昌市| 色达县| 双流县| 盖州市| 闽清县| 金川县| 和政县| 广平县| 永德县|