C++11实现的单例模式

定义文件: 

  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.csdn.net/cjbct/article/details/79266057

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值