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

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

c++單例模式實現源碼

2019-11-14 09:53:56
字體:
來源:轉載
供稿:網友
#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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 醴陵市| 阳曲县| 会昌县| 普定县| 普格县| 泗洪县| 马龙县| 桂东县| 龙胜| 岳阳县| 井冈山市| 河曲县| 鹰潭市| 弥渡县| 买车| 温宿县| 临汾市| 黄山市| 邹城市| 白朗县| 都江堰市| 错那县| 那坡县| 呼和浩特市| 抚松县| 称多县| 昌吉市| 重庆市| 南昌市| 兴义市| 渭源县| 河池市| 门源| 丁青县| 南乐县| 门头沟区| 阜南县| 渭南市| 高碑店市| 凌云县| 治多县|