C++11实现的单例模式

这篇博客详细介绍了如何使用C++实现单例模式,包括私有构造函数、拷贝构造函数和赋值运算符的禁止,以及使用`shared_ptr`进行智能管理,确保单例对象的正确创建和销毁。通过`CSingleton`类的`getInstance`方法获取单例实例,且在析构时提供了一个静态方法`Destory`来销毁单例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

定义文件: 

  1. #ifndef C_SINGLETON_H

  2. #define C_SINGLETON_H

  3.  
  4. #include<iostream>

  5. #include<memory>

  6. using namespace std;

  7. class CSingleton

  8. {

  9. private:

  10. CSingleton(){ cout << "单例对象创建!" << endl; };

  11. CSingleton(const CSingleton &);

  12. CSingleton& operator=(const CSingleton &);

  13. ~CSingleton(){ cout << "单例对象销毁!" << endl; };

  14. static void Destory(CSingleton *){ cout << "在这里销毁单例对象!" << endl; };//注意这里

  15. static shared_ptr<CSingleton> myInstance;

  16. public:

  17. static shared_ptr<CSingleton> getInstance()

  18. {

  19. return myInstance;

  20. }

  21.  
  22. };

  23.  
  24. #endif

主文件:

  1. //主文件,用于测试用例的生成

  2. #include<iostream>

  3. #include<memory>

  4. #include"CSingleton.h"

  5.  
  6. using namespace std;

  7. shared_ptr<CSingleton> CSingleton::myInstance(new CSingleton(), CSingleton::Destory);

  8. int main()

  9. {

  10. shared_ptr<CSingleton> ct1 = CSingleton::getInstance();

  11. shared_ptr<CSingleton> ct2 = CSingleton::getInstance();

  12. shared_ptr<CSingleton> ct3 = CSingleton::getInstance();

  13.  
  14. return 0;

  15. }

内容来自https://blog.youkuaiyun.com/cjbct/article/details/79266057

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值