码迷,mamicode.com
首页 > 编程语言 > 详细

C++简单单例模式

时间:2015-08-11 21:16:47      阅读:165      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!