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

设计模式——单例设计模式(C++实现)

时间:2017-04-20 23:01:45      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:stat   单例   ++   模式   c++实现   define   single   span   hold   

 1 #ifndef  SINGLETONHOLDER_INC
 2 #define  SINGLETONHOLDER_INC
 3 
 4 template<class T>
 5 class SingletonHolder
 6 {
 7 public:
 8     static T* Instance()
 9     {
10         if(!pInstance_)
11             pInstance_=new T;
12         return pInstance_;
13     }
14 private:
15     SingletonHolder(){};
16     SingletonHolder(const SingletonHolder&);
17     SingletonHolder& operator=(const SingletonHolder&);
18     ~SingletonHolder(){};
19     static T* pInstance_;
20 };
21 
22 template<class T>
23 T* SingletonHolder<T>::pInstance_=0;
24 
25 
26 #endif
27 
28 
29 #ifndef INS
30 #define INS SingletonHolder<CGlobal>::Instance()
31 #endif

 结合模板和宏定义,可以很方便的单例化任何类

设计模式——单例设计模式(C++实现)

标签:stat   单例   ++   模式   c++实现   define   single   span   hold   

原文地址:http://www.cnblogs.com/070412-zwc/p/6740960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!