那谁的技术博客
感兴趣领域:高性能服务器编程,存储,算法,Linux内核
随笔 - 210, 文章 - 0, 评论 - 1183, 引用 - 0
数据加载中……
常见设计模式的解析和实现(C++)之十六-Strategy模式
作用:
定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换.本模式使得算法可独立于使用它的客户而变化.
UML结构图:
解析:
简而言之一句话,Strategy模式是对算法的封装.处理一个问题的时候可能有多种算法,这些算法的接口(输入参数,输出参数等)都是一致的,那么可以考虑采用Strategy模式对这些算法进行封装,在基类中定义一个函数接口就可以了.
实现:
1)Strategy.h
/**/
/*
*******************************************************************
created: 2006/08/06
filename: Strategy.h
author: 李创
http://www.cppblog.com/converse/
purpose: Strategy模式的演示代码
********************************************************************
*/
#ifndef STRATEGY_H
#define
STRATEGY_H
class
Strategy;
class
Context
{
public
:
Context(Strategy
*
pStrategy);
~
Context();
void
ContextInterface();
private
:
Strategy
*
m_pStrategy;
}
;
class
Strategy
{
public
:
virtual
~
Strategy()
{}
virtual
void
AlgorithmInterface()
=
0
;
}
;
class
ConcreateStrategyA
:
public
Strategy
{
public
:
virtual
~
ConcreateStrategyA()
{}
virtual
void
AlgorithmInterface();
}
;
#endif
2)Strategy.cpp
/**/
/*
*******************************************************************
created: 2006/08/06
filename: Strategy.cpp
author: 李创
http://www.cppblog.com/converse/
purpose: Strategy模式的演示代码
********************************************************************
*/
#include
<
iostream
>
#include
"
Strategy.h
"
Context::Context(Strategy
*
pStrategy)
: m_pStrategy(pStrategy)
{
}
Context::
~
Context()
{
delete m_pStrategy;
m_pStrategy
=
NULL;
}
void
Context::ContextInterface()
{
if
(NULL
!=
m_pStrategy)
{
m_pStrategy
->
AlgorithmInterface();
}
}
void
ConcreateStrategyA::AlgorithmInterface()
{
std::cout
<<
"
AlgorithmInterface Implemented by ConcreateStrategyA\n
"
;
}
3)Main.cpp
/**/
/*
*******************************************************************
created: 2006/08/06
filename: Main.cpp
author: 李创
http://www.cppblog.com/converse/
purpose: Strategy模式的测试代码
********************************************************************
*/
#include
"
Strategy.h
"
int
main()
{
Strategy
*
pStrategy
=
new
ConcreateStrategyA();
Context
*
pContext
=
new
Context(pStrategy);
pContext
->
ContextInterface();
delete pContext;
return
0
;
}
posted on 2006-08-06 22:22
那谁
阅读(2788)
评论(1)
编辑
收藏
引用
所属分类:
设计模式
评论
#
re: 常见设计模式的解析和实现(C++)之十六-Strategy模式 [未登录]
回复
更多评论
太谢谢李兄了,看了四人帮的设计模式,半天没弄懂的东西,一看你的代码,立马就懂了!太感谢了!代码和注释都写得清晰易懂,太佩服了!
2011-01-25 01:10 |
Peter
刷新评论列表
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
服务器公共库开发--线程安全的singleton类, 可配置的线程锁管理类
常见设计模式的解析和实现(C++)文档及源码打包下载
常见设计模式的解析和实现(C++)之二十一-完结篇
常见设计模式的解析和实现(C++)之二十-Visitor模式
常见设计模式的解析和实现(C++)之十九-Memento模式
常见设计模式的解析和实现(C++)之十八-Iterator模式
常见设计模式的解析和实现(C++)之十七-State模式
常见设计模式的解析和实现(C++)之十六-Strategy模式
常见设计模式的解析和实现(C++)之十五-Observer模式
常见设计模式的解析和实现(C++)之十四-Command模式
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 那谁
导航
C++博客
首页
联系
聚合
管理
<
2006年7月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
公告
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(71)
给我留言
查看公开留言
查看私人留言
随笔分类
(264)
avidya(1)
(rss)
C\C++(21)
(rss)
ccache(8)
(rss)
CGL(5)
(rss)
eventrpc(1)
(rss)
gdb(2)
(rss)
libevent(2)
(rss)
lighttpd(10)
(rss)
linux kernel(7)
(rss)
Linux/Unix(32)
(rss)
memcached(2)
(rss)
mktags(4)
(rss)
Nginx(5)
(rss)
Perl(3)
(rss)
tokyo cabinet(5)
(rss)
操作系统(1)
(rss)
读书笔记(3)
(rss)
服务器设计(42)
(rss)
脚本语言(1)
(rss)
经验教训(4)
(rss)
其他(10)
(rss)
设计模式(24)
(rss)
算法与数据结构(48)
(rss)
图形学(1)
(rss)
网络编程(22)
(rss)
随笔档案
(210)
2010年8月 (1)
2010年7月 (3)
2010年6月 (2)
2010年5月 (1)
2010年4月 (2)
2010年3月 (1)
2010年1月 (5)
2009年12月 (7)
2009年11月 (3)
2009年10月 (7)
2009年9月 (2)
2009年8月 (2)
2009年7月 (1)
2009年6月 (3)
2009年5月 (2)
2009年4月 (7)
2009年3月 (2)
2009年2月 (2)
2009年1月 (5)
2008年12月 (1)
2008年11月 (2)
2008年10月 (6)
2008年9月 (12)
2008年8月 (11)
2008年7月 (5)
2008年6月 (2)
2008年4月 (3)
2008年3月 (3)
2008年2月 (1)
2008年1月 (1)
2007年12月 (3)
2007年11月 (3)
2007年8月 (1)
2007年7月 (2)
2007年6月 (2)
2007年5月 (9)
2007年4月 (1)
2007年3月 (8)
2007年2月 (3)
2007年1月 (5)
2006年12月 (4)
2006年11月 (3)
2006年10月 (5)
2006年9月 (4)
2006年8月 (13)
2006年7月 (28)
2006年4月 (1)
2006年3月 (4)
2006年2月 (4)
2006年1月 (1)
2005年12月 (1)
相册
ccache
lighttpd
tokyo cabinet
文件
关于我
我的google reader share
我的google reader share
开源项目
libevent
lighttpd
memcached
PCRE for Windows (Win32)
sqlite
STLFilt
论坛
ChinaUnix
OldLinux
朋友
cugb_cat
Edengundam
win_hate
ypxing
老罗
搜索
最新评论
1. re: memcached采用的网络模型
很好的文章,值得分享。
--纽约网站设计
2. re: 常见设计模式的解析和实现(C++)文档及源码打包下载
评论内容较长,点击标题查看
--残阳丛林
3. re: libevent事件处理框架分析
@hailong
拿走后,堆的恢复是logn
--jiao
4. re: 从半同步-半异步模式谈服务器的设计
学习服务器的一些代码模式。
--王小亮
5. re: 让libevent支持多线程
刚开始以为有个新的方法可以实现多线程。。。。其实就试类似pipe的方式, memcache就是这样做的,可以参考一下
--fly2010love
阅读排行榜
1. 同步/异步与阻塞/非阻塞的区别(53039)
2. libevent事件处理框架分析(45186)
3. epoll学习笔记(41110)
4. 解读google C++ code style谈对C++的理解(38107)
5. 集成libevent,google protobuf的RPC框架(27405)
6. 常见设计模式的解析和实现(C++)文档及源码打包下载(24022)
7. 让libevent支持多线程(23578)
8. 一个关于临时对象和虚拟析构函数的问题(22302)
9. epoll为什么这么快(20230)
10. 二叉树遍历算法集合(前中后序遍历的递归和非递归算法,层序遍历算法)(20227)
11. Callback在C\C++中的实现(20028)
12. 二分查找算法(迭代和递归版本)(18303)
13. 谈目前项目组的代码提交制度(17859)
14. Linux下面的线程锁,条件变量以及信号量的使用(15653)
15. C++的流设计很糟糕(14642)
16. 二分查找学习札记(14272)
17. memcached采用的网络模型(13915)
18. 红黑树的实现源码(第二次修订版)(13651)
19. 多进程服务器中,epoll的创建应该在创建子进程之后(12678)
20. 第一个socket程序-C\S模式的文件传输程序(12232)
21. 使用tolua++创建基于C\C++语言的lua脚本(12044)
22. 博客迁移(11589)
23. 从半同步-半异步模式谈服务器的设计(11569)
24. Lighty与Nginx的比较分析(11539)
25. Btree算法实现代码(11532)
26. 向德国人低头(11432)
27. epoll相关资料整理(11270)
28. 把二分查找算法写正确需要注意的地方(11127)
29. 程序设计经验总结(10212)
30. 我的项目Makefile文件模板(10152)
31. 带超时机制的DNS解析API(9511)
32. 方法与工具(9365)
33. 自己设想的一个IM服务器的架构(9173)
评论排行榜
1. 常见设计模式的解析和实现(C++)文档及源码打包下载(90)