本帖最后由 52lxw 于 2019-10-8 10:49 编辑
简单的说,一个类只能生成一个对象,看看c++是怎么实现的。
代码:
[C++] 纯文本查看 复制代码 // study.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
using namespace std;
class CSingleton
{
private:
CSingleton();
static CSingleton *pInstance;
public:
static CSingleton* GetInstance(){
if (pInstance == NULL){
pInstance = new CSingleton();
return pInstance;
}
return pInstance;
}
void Address()
{
printf("%08x\n", pInstance);
}
~CSingleton();
};
CSingleton::CSingleton()
{
}
CSingleton::~CSingleton()
{
}
CSingleton* CSingleton::pInstance = NULL;
int _tmain(int argc, _TCHAR* argv[])
{
auto a = CSingleton::GetInstance();
auto b = CSingleton::GetInstance();
a->Address();
b->Address();
getchar();
return 0;
}
虽然调用了两次GetInstance,但在程序运行的时候有且只有一个对象。
|