标签:android 设计模式 java 策略 strategy
策略模式主要定义一系列的算法,学过数据结构的朋友肯定知道,对于数组从大到小进行排序有着很多的算法,比如冒泡、交换、快速插入等等,策略模式就是把这些算法封装成一个个独立的类,方便使用时候进行任意的调用。这里以字符串替代为例, 有一个文件,我们需要读取后,希望替代其中相应的变量,然后输出.关于替代其中变量的方法可能有多种方法,这取决于用户的要求,所以我们要准备几套变量字符替代方案.首先,我们建立一个抽象类RepTempRule 定义一些公用变量和方法:
public abstract class RepTempRule{
protected String oldString";
protected String newString;
public void setOldString(String oldString){
this.oldString=oldString;
}
public String getNewString(){
return newString;
}
public abstract void replace() throws Exception;
}
public class RepTempRuleOne extends RepTempRule{
public void replace() throws Exception{
newString=oldString.replaceFirst("aaa", "bbbb")
//replaceFirst是jdk有的方法
System.out.println("this is replace one");
}
}
public class RepTempRuleSolve {
private RepTempRule strategy;
public RepTempRuleSolve(RepTempRule rule){
//构造方法
this.strategy=rule;
}
public String getNewContext(Site site,String oldString)
{
return strategy.replace(site,oldString);
}
//变化算法
public void changeAlgorithm(RepTempRule newAlgorithm) {
strategy = newAlgorithm;
}
}
RepTempRuleSolve solver=new RepTempRuleSolve(new RepTempRuleSimple());
solver.getNewContext(site,context);
//使用第二套
solver=new RepTempRuleSolve(new RepTempRuleTwo());
solver.getNewContext(site,context);
Android开发之策略模式初探,布布扣,bubuko.com
标签:android 设计模式 java 策略 strategy
原文地址:http://blog.csdn.net/gerogelin/article/details/38655809