加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
单例模式饿汉式智能指针.cpp 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
冰糖葫芦很乖 提交于 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 void Destory(Singleton*) { cout << "在这里销毁单例对象!" << endl; };//注意这里
static shared_ptr<Singleton> myInstance;
public:
static shared_ptr<Singleton> getInstance()
{
return myInstance;
}
};
shared_ptr<Singleton> Singleton::myInstance(new Singleton(), Singleton::Destory);
int main()
{
shared_ptr<Singleton> ct1 = Singleton::getInstance();
shared_ptr<Singleton> ct2 = Singleton::getInstance();
shared_ptr<Singleton> ct3 = Singleton::getInstance();
return 0;
}
//输出
//单例对象创建!
//在这里销毁单例对象!
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化