1.什么是策略设计模式
在策略模式(Strategy Pattern)中,一个类的行为或其算法可以在运行时更改。这种类型的设计模式属于行为型模式。
在策略模式中,我们创建表示各种策略的对象和一个行为随着策略对象改变而改变的 context 对象。策略对象改变 context 对象的执行算法。
意图:定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换。
主要解决:在有多种算法相似的情况下,使用 if…else 所带来的复杂和难以维护。
何时使用:一个系统有许多许多类,而区分它们的只是他们直接的行为。
如何解决:将这些算法封装成一个一个的类,任意地替换。
关键代码:实现同一个接口。
应用实例: 1、诸葛亮的锦囊妙计,每一个锦囊就是一个策略。 2、旅行的出游方式,选择骑自行车、坐汽车,每一种旅行方式都是一个策略。 3、JAVA AWT 中的 LayoutManager。
优点: 1、算法可以自由切换。 2、避免使用多重条件判断。 3、扩展性良好。
缺点: 1、策略类会增多。 2、所有策略类都需要对外暴露。
使用场景: 1、如果在一个系统里面有许多类,它们之间的区别仅在于它们的行为,那么使用策略模式可以动态地让一个对象在许多行为中选择一种行为。 2、一个系统需要动态地在几种算法中选择一种。 3、如果一个对象有很多的行为,如果不用恰当的模式,这些行为就只好使用多重的条件选择语句来实现。
注意事项:如果一个系统的策略多于四个,就需要考虑使用混合模式,解决策略类膨胀的问题。
2.常见的策略模式
2.1对某一个数组进行排序
public class Cat {
private int height;
private int weight;
private String color;
public Cat() {
}
public Cat(int height, int weight, String color) {
this.height = height;
this.weight = weight;
this.color = color;
}
@Override
public String toString() {
return "Cat{" +
"height=" + height +
", weight=" + weight +
", color='" + color + '\'' +
'}';
}
}
public static void main(String[] args) {
Cat cat1 = new Cat(12, 16, "yellow");
Cat cat2 = new Cat(13, 15, "blue");
Cat cat3 = new Cat(14, 14, "grey");
Cat cat4 = new Cat(15, 13, "black");
Cat cat5 = new Cat(16, 12, "white");
Cat[] cats = {cat1, cat2, cat3, cat4, cat5};
//这里的Comparator就是一个策略 它是一个接口
Arrays.sort(cats, (a, b) -> a.getWeight() - b.getWeight());
System.out.println(Arrays.toString(cats));
Arrays.sort(cats, (a, b) -> a.getHeight() - b.getHeight());
System.out.println(Arrays.toString(cats));
}
Arrays.sort() 需要传入的Comparator就是一个策略,它可以执行不同的操作
2.2同样两个数字,想对它们进行不同的操作
实现同一个接口
public interface Operation {
int operation(int num1, int num2);
}
//加法操作
public class AddOperation implements Operation {
@Override
public int operation(int num1, int num2) {
return num1 + num2;
}
}
//减法操作
public class DecendOperation implements Operation {
@Override
public int operation(int num1, int num2) {
return num1 - num2;
}
}
//乘法操作
public class MultiOperation implements Operation {
@Override
public int operation(int num1, int num2) {
return num1 * num2;
}
}
public class StrategyDemo {
static Operation operation;
public static void main(String[] args) {
int num1 = 10;
int num2 = 2;
operation = new AddOperation();
System.out.println("num1 + num2 = " + operation.operation(num1, num2));
operation = new DecendOperation();
System.out.println("num1 - num2 = " + operation.operation(num1, num2));
operation = new MultiOperation();
System.out.println("num1 * num2 = " + operation.operation(num1, num2));
}
}
num1 + num2 = 12
num1 - num2 = 8
num1 * num2 = 20