




已阅读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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025综合购销合同书
- Unit 1说课稿-2025-2026学年小学英语第一册朗文国际英语
- 粤教版信息技术选修二《多媒体技术应用》第五章《5.1声音的采集与加工》教学设计 高二下册
- 棉花纺织厂原料采购合同
- 2023四年级语文下册 第1单元 3 天窗配套说课稿 新人教版
- Review 9 10 11 12说课稿-2025-2026学年小学英语Level 2剑桥国际少儿英语(第二版)
- Lesson 33:Let's Go to the Zoo!说课稿-2025-2026学年初中英语冀教版2012七年级上册-冀教版2012
- 关于清明祭祖的演讲稿
- 公司职员工作总结范例
- 阳泉市检察院招聘考试真题2024
- 2025江西上饶市属国有企业第一批次招聘105人考试参考试题及答案解析
- GB/T 7713.4-2025信息与文献编写规则第4部分:数据论文
- 2025关于上海市的劳动合同范本
- 2025年全国通信专业技术人员职业水平考试(通信专业实务终端与业务)(高、中级)练习题及答案
- 土地出让课件
- 2025年移动初级解决方案经理认证理论考试指导题库-下(多选、判断题)
- (正式版)JBT 9229-2024 剪叉式升降工作平台
- 浦东机场手册
- 柴油机负荷特性曲线比较课件
- 《认识液体》-完整版PPT
- 《跳长绳绕“8”字跳绳》教学设计-小学《体育与健康》(水平二)四年级上册-人教版
评论
0/150
提交评论