策略模式(Strategy)-----基于JAVA语言

来源:互联网 发布:淘宝价格旁已验证正品 编辑:程序博客网 时间:2024/06/05 05:29
策略模式定义了一系列算法,并将每个算法封装起来,使他们可以相互替换,且算法的变化不会影响到使用算法的客户。需要设计一个接口,为一系列实现类提供统一的方法,多个实现类实现该接口,也可以设计一个抽象类(可有可无,属于辅助类),提供辅助函数
    例子:
 //统一的接口    public interface ICalculator {           public int calculate(String exp);      }      //抽象类,作为辅助类,可以提供一些你认为需要的方法    public abstract class AbstractCalculator {          public int[] split(String exp,String opt){              String array[] = exp.split(opt);              int arrayInt[] = new int[2];              arrayInt[0] = Integer.parseInt(array[0]);              arrayInt[1] = Integer.parseInt(array[1]);              return arrayInt;          }      }    //接口的三个实现类:    public class Plus extends AbstractCalculator implements ICalculator {          public int calculate(String exp) {              int arrayInt[] = split(exp,"[+]");              return arrayInt[0]+arrayInt[1];          }      }          public class Minus extends AbstractCalculator implements ICalculator {          public int calculate(String exp) {              int arrayInt[] = split(exp,"-");              return arrayInt[0]-arrayInt[1];          }      }    public class Multiply extends AbstractCalculator implements ICalculator {          public int calculate(String exp) {              int arrayInt[] = split(exp,"[*]");              return arrayInt[0]*arrayInt[1];          }      }      //测试类    public class Test {                public static void main(String[] args) {              String exp = "2+8";              ICalculator cal = new Plus();              int result = cal.calculate(exp);              System.out.println(result);          }      }  


    策略模式的决定权在用户,系统本身提供不同算法的实现,新增或者删除算法,对各种算法做封装。因此,策略模式多用在算法决策系统中,外部用户只需要决定用哪个算法即可。
    我们之前在TreeSet排序的时候,有一种叫做资客户化排序的方式,就是给TreeSet传一个比较器对象,这个其实就是使用了策略模式
原创粉丝点击