加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
单例模式懒汉式GC机制.cpp 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
冰糖葫芦很乖 提交于 2022-02-23 16:25 . 设计模式
#include<iostream>
#include<memory>
using namespace std;
class Singleton
{
private:
Singleton() { cout << "单例对象创建!" << endl; };
Singleton(const Singleton&);
Singleton& operator=(const Singleton&);
~Singleton() { cout << "单例对象销毁!" << endl; };
static Singleton* myInstance;
public:
static Singleton* getInstance()
{
if (nullptr == myInstance)
{
myInstance = new Singleton();
}
return myInstance;
}
private:
// 定义一个内部类
class GC {
public:
GC() {};
~GC()
{
if (nullptr != myInstance)
{
delete myInstance;
myInstance = nullptr;
}
}
};
// 定义一个内部类的静态对象
// 当该对象销毁时,顺带就释放myInstance指向的堆区资源
static GC m_garbo;
};
Singleton* Singleton::myInstance = nullptr;
Singleton::GC Singleton::m_garbo;
int main()
{
Singleton* ct1 = Singleton::getInstance();
Singleton* ct2 = Singleton::getInstance();
Singleton* ct3 = Singleton::getInstance();
return 0;
}
//输出
//单例对象创建!
//单例对象销毁!
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化