13、策略模式(strategy)

来源:互联网 发布:淘宝官方自营店是什么 编辑:程序博客网 时间:2024/06/07 06:11

13、策略模式(strategy)

策略模式定义了一系列算法,并将每个算法封装起来,使他们可以相互替换,且算法的变化不会影响到使用算法的客户。需要设计一个接口,为一系列实现类提供统一的方法,多个实现类实现该接口,设计一个抽象类(可有可无,属于辅助类),提供辅助函数,关系图如下:
图中ICalculator提供同意的方法,

AbstractCalculator是辅助类,提供辅助方法,接下来,依次实现下每个类:

首先统一接口:

?
1
2
3
public interface ICalculator {
 publicintcalculate(String exp);
}

辅助类:

?
1
2
3
4
5
6
7
8
9
10
public abstract class AbstractCalculator {
   
 publicint[] split(String exp,String opt){
  String array[] = exp.split(opt);
  intarrayInt[] =newint[2];
  arrayInt[0] = Integer.parseInt(array[0]);
  arrayInt[1] = Integer.parseInt(array[1]);
  returnarrayInt;
 }
}

三个实现类:

?
1
2
3
4
5
6
7
8
public class Plus extendsAbstractCalculatorimplementsICalculator {
  
 @Override
 publicintcalculate(String exp) {
  intarrayInt[] = split(exp,"\\+");
  returnarrayInt[0]+arrayInt[1];
 }
}
?
1
2
3
4
5
6
7
8
9
public class Minus extendsAbstractCalculatorimplementsICalculator {
  
 @Override
 publicintcalculate(String exp) {
  intarrayInt[] = split(exp,"-");
  returnarrayInt[0]-arrayInt[1];
 }
  
}
?
1
2
3
4
5
6
7
8
public class Multiply extendsAbstractCalculatorimplementsICalculator {
  
 @Override
 publicintcalculate(String exp) {
  intarrayInt[] = split(exp,"\\*");
  returnarrayInt[0]*arrayInt[1];
 }
}

简单的测试类:

?
1
2
3
4
5
6
7
8
9
public class StrategyTest {
  
 publicstaticvoid main(String[] args) {
  String exp ="2+8";
  ICalculator cal =newPlus();
  intresult = cal.calculate(exp);
  System.out.println(result);
 }
}

  输出:10

策略模式的决定权在用户,系统本身提供不同算法的实现,新增或者删除算法,对各种算法做封装。因此,策略模式多用在算法决策系统中,外部用户只需要决定用哪个算法即可。

原创粉丝点击