Geo-Info Technical Blog

Blogging 3S , Programming ,etc.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

C++单例模式

Posted on 2012-04-23 16:59  cosophy  阅读(356)  评论(0编辑  收藏  举报

#ifndef _SINGLETON_H_ #define _SINGLETON_H_

//单件类

#include <memory>

using namespace std;

template <class T> class Singleton {

public:  static T* Instance()  {   if( 0 == _instance.get())   {    _instance.reset( new T);   }   return _instance.get();  }

private:  Singleton(void){}  /*  ~Singleton(void){};  Singleton(const Singleton&){};  Singleton & operator= (const Singleton &){};*/

 static auto_ptr<T> _instance; };

template <class T> auto_ptr<T> Singleton<T>::_instance;

//实现类T必须调用以下宏

#define DECLARE_SINGLETON_CLASS(type)\ friend class auto_ptr<type>;\ friend class Singleton<type>;

#endif

 REFENCENCE: http://blog.csdn.net/liuxialong/article/details/6764688