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

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

c++單例模式實現源碼

2019-11-14 10:41:52
字體:
來源:轉載
供稿:網友
#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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 视频| 漯河市| 泰州市| 芦山县| 金山区| 嘉鱼县| 方城县| 西贡区| 甘谷县| 西乡县| 什邡市| 九江市| 万全县| 于田县| 和硕县| 和田县| 双城市| 西昌市| 阳原县| 宿松县| 贵溪市| 察雅县| 馆陶县| 调兵山市| 罗山县| 衡阳市| 光山县| 临泉县| 伊春市| 文水县| 罗源县| 长乐市| 保定市| 城市| 西平县| 淮安市| 孝昌县| 汾阳市| 安达市| 普兰店市| 连江县|