Singleton模式1.docx_第1页
Singleton模式1.docx_第2页
Singleton模式1.docx_第3页
Singleton模式1.docx_第4页
Singleton模式1.docx_第5页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Singleton模式是常用的设计模式之一,但是要实现一个真正实用的设计模式却也不是件容易的事情。1.标准的实现classSingletonpublic:staticSingleton*Instance()if(0=_instance)_instance=newSingleton;return_instance;protected:Singleton(void)virtualSingleton(void)staticSingleton* _instance;这是教科书上使用的方法。看起来没有什么问题,其实包含很多的问题。下面我们一个一个的解决。2.自动垃圾回收上面的程序必须记住在程序结束的时候,释放内存。为了让它自动的释放内存,我们引入auto_ptr改变它。#include#includeusingnamespacestd;classSingletonpublic:staticSingleton*Instance()if(0=_instance.get()_instance.reset(newSingleton);return_instance.get();protected:Singleton(void)coutCreate Singletonendl;virtualSingleton(void)coutDestroy Singletonendl;friendclassauto_ptr;staticauto_ptr_instance;/Singleton.cppauto_ptrSingleton:_instance;3.增加模板在我的一个工程中,有多个的Singleton类,对Singleton类,我都要实现上面这一切,这让我觉得烦死了。于是我想到了模板来完成这些重复的工作。现在我们要添加本文中最吸引人单件实现:/*(c) 2003-2005 C2217 StudioModule:Singleton.hAuthor:Yangjun D.Created:9/3/200523:17Purpose:Implement singleton patternHistory:*/#pragmaonce#includeusingnamespacestd;usingnamespaceC2217:Win32;namespaceC2217namespacePatterntemplateclassSingletonpublic:staticinlineT*instance();private:Singleton(void)Singleton(void)Singleton(constSingleton&)Singleton&operator=(constSingleton&)staticauto_ptr_instance;templateauto_ptrSingleton:_instance;templateinlineT*Singleton:instance()if(0=_instance.get()_instance.reset(newT);return_instance.get();/Class that will implement the singleton mode,/must use the macro in its delare file#defineDECLARE_SINGLETON_CLASS(type)friendclassauto_ptr;friendclassSingleton;4.线程安全上面的程序可以适应单线程的程序。但是如果把它用到多线程的程序就会发生问题。主要的问题在于同时执行_instance.reset(newT);就会同时产生两个新的对象,然后马上释放一个,这跟Singleton模式的本意不符。所以,你需要更加安全的版本:/*(c) 2003-2005 C2217 StudioModule:Singleton.hAuthor:Yangjun D.Created:9/3/200523:17Purpose:Implement singleton patternHistory:*/#pragmaonce#includeusingnamespacestd;#includeInterlocked.husingnamespaceC2217:Win32;namespaceC2217namespacePatterntemplateclassSingletonpublic:staticinlineT*instance();private:Singleton(void)Singleton(void)Singleton(constSingleton&)Singleton&operator=(constSingleton&)staticauto_ptr_instance;staticCResGuard _rs;templateauto_ptrSingleton:_instance;templateCResGuard Singleton:_rs;templateinlineT*Singleton:instance()if(0=_instance.get()CResGuard:CGuard gd(_rs);if(0=_instance.get()_instance.reset(newT);return_instance.get();/Class that will implement the singleton mode,/must use the macro in its delare file#defineDECLARE_SINGLETON_CLASS(type)friendclassauto_ptr;friendclassSingleton;CresGuard类主要的功能是线程访问同步,代码如下:/*Module:Interlocked.hNotices: Copyright (c) 2000 Jeffrey Richter*/#pragmaonce/ Instances of this class will be accessed by multiple threads. So,/ all members of this class (except the constructor and destructor)/ must be thread-safe.classCResGuardpublic:CResGuard()m_lGrdCnt=0;InitializeCriticalSection(&m_cs);CResGuard()DeleteCriticalSection(&m_cs);/ IsGuarded is used for debuggingBOOL IsGuarded()constreturn(m_lGrdCnt0);public:classCGuardpublic:CGuard(CResGuard&rg):m_rg(rg)m_rg.Guard();CGuard()m_rg.Unguard();private:CResGuard&m_rg;private:voidGuard()EnterCriticalSection(&m_cs);m_lGrdCnt+;voidUnguard()m_lGrdCnt-;LeaveCriticalSection(&m_cs);/ Guard/Unguard can only be accessed by the nested CGuard class.friendclassCResGuard:CGuard;private:CRITICAL_SECTION m_cs;longm_lGrdCnt;/ # of EnterCriticalSection calls;/5.实用方法比如你有一个需要实现单件模式的类,就应该这样实现:#pragmaonce#includesingleton.husingnamespaceC2217:Pattern;classServiceMangerpublic:voidRun()private:ServiceManger(void)virtualServiceManger(void)DECLARE_SINGLETON_CLASS(ServiceManger);typedefSingletonSSManger;在使用的时候很简单,跟一般的Single

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论