码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式实例

时间:2014-09-01 17:48:23      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:单例模式实例

#include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
using namespace std;

class CSingleton
{
private:
	CSingleton()   //构造函数是私有的
	{
	}
	static CSingleton *m_pInstance;
public:
	static CSingleton * GetInstance()
	{
		if(m_pInstance == NULL)  //判断是否第一次调用
			m_pInstance = new CSingleton();
		return m_pInstance;
	}
};

CSingleton* CSingleton::m_pInstance=NULL;

int main()
{	
	CSingleton* s1=CSingleton::GetInstance();


	system("pause");
	return 0;
}

单例模式实例

标签:单例模式实例

原文地址:http://blog.csdn.net/cjc211322/article/details/38981821

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!