标签:
用途
策略模式是一种行为型模式。
图-策略模式结构图
ConcreteStrategy : 实现 Strategy 中的算法接口(AlgorithmInterface)。
Context : 用一个 ConcreteStrategy 来配置。维护一个对 Strategy 对象的引用。
测试代码
运行结果
JAVA 设计模式 策略模式
原文地址:http://www.cnblogs.com/jingmoxukong/p/4241965.html