本帖最后由 苏冉 于 2013-3-27 19:41 编辑
#include <iostream>
class Singleton
{
public:
Singleton(){}
static Singleton* GetSingleton();
private:
Singleton(){};
static Singleton* pTHIS;
};
Singleton* Singleton::pTHIS = NULL;
Singleton* Singleton::GetSingleton()
{
if (!pTHIS) pTHIS = new Singleton();
return pTHIS;
}
int main()
{
using namespace std;
Singleton* pOne = Singleton::GetSingleton();
Singleton* pTwo = Singleton::GetSingleton();
cout<<"Address of pOne: "<<pOne<<endl;
cout<<"Address of pTwo: "<<pTwo<<endl;
system("pause");
return 0;
}
如果在函数调用类时也不希望出现类的复制,那么拷贝构造函数也需要声明为私有方法
|