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

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

c++單例模式實現源碼

2019-11-14 09:43:16
字體:
來源:轉載
供稿:網友
#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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 迭部县| 龙里县| 祁连县| 鹤岗市| 大理市| 罗甸县| 黎川县| 上虞市| 鸡东县| 万全县| 板桥市| 临沂市| 保靖县| 华亭县| 常山县| 南岸区| 朝阳区| 西和县| 保山市| 娄底市| 太仆寺旗| 涟水县| 金湖县| 磴口县| 海兴县| 南雄市| 琼中| 清远市| 荣昌县| 土默特左旗| 宁夏| 乌拉特前旗| 西乌珠穆沁旗| 松桃| 曲周县| 小金县| 东安县| 宝应县| 什邡市| 子洲县| 乐清市|