策略模式(strategy)

定义:策略模式封装了一系列的算法,所有算法完成相同的工作,但实现不同,可以以相同的方法调用所有的算法,减少各种算法类与使用算法类之间的耦合。

结构图如下
[img]http://dl.iteye.com/upload/attachment/0063/6288/21679f46-2d5d-3341-ad31-41fe55d0dd53.png[/img]
Context类维护一个Strategy类的引用,由ContextInterface接口操作Strategy子类,这样客户端就只要知道Context类就可以了。

一个简单的例子,目的只在说明Strategy模式的类关系。
Strategy抽象类

class Strategy
end

Strategy子类

class ConcreteStrategyA < Strategy
def algorithmInterface
puts "A algorithm!"
end
end

class ConcreteStrategyB < Strategy
def algorithmInterface
puts "B algorithm!"
end
end

class ConcreteStrategyC < Strategy
def algorithmInterface
puts "C algorithm!"
end
end

Context类,包含一个Strategy的引用

class Context
def initialize type
@strategy_ = case
when type == "A" then ConcreteStrategyA.new
when type == "B" then ConcreteStrategyB.new
when type == "C" then ConcreteStrategyC.new
end
end

def operate
@strategy_.algorithmInterface
end
end

客户端使用Context实例

if __FILE__ == $0
ct = Context.new("A")
ct.operate

ct = Context.new("C")
ct.operate

ct = Context.new("B")
ct.operate
end

结果如下:

A algorithm!
C algorithm!
B algorithm!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值