定义:策略模式封装了一系列的算法,所有算法完成相同的工作,但实现不同,可以以相同的方法调用所有的算法,减少各种算法类与使用算法类之间的耦合。
结构图如下
[img]http://dl.iteye.com/upload/attachment/0063/6288/21679f46-2d5d-3341-ad31-41fe55d0dd53.png[/img]
Context类维护一个Strategy类的引用,由ContextInterface接口操作Strategy子类,这样客户端就只要知道Context类就可以了。
一个简单的例子,目的只在说明Strategy模式的类关系。
Strategy抽象类
Strategy子类
Context类,包含一个Strategy的引用
客户端使用Context实例
结果如下:
结构图如下
[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!