首页 > 编程语言 > 详细

C++简单单例模式

时间:2015-08-11 21:13:40      阅读:225      评论:0      收藏:0      [点我收藏+]
 1 #ifndef _SINGLETON_H_
 2 #define _SINGLETON_H_
 3 #include <stdio.h>
 4 
 5 template<typename T>
 6 class CSingleton
 7 {
 8 private:
 9     CSingleton(){}   //构造函数是私有的
10 public:
11     static T * GetInstance()
12     {
13         static T instance;   //局部静态变量
14         return &instance;
15     }
16 };
17 
18 #endif

 

C++简单单例模式

原文:http://www.cnblogs.com/tangxin-blog/p/4722250.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!