标签:test23 软件设计 18 番外 package System class new public
旅游的出行方式有乘坐飞机旅行、乘火车旅行和自行车游,不同的旅游方式有不同的实现过程,客户可以根据自己的需要选择一种合适的旅行方式。
实验要求:
1. 提交源代码;
package test23;
public class AirplaneStrategy implements TravelStrategy{
public void travel() {
System.out.println("乘坐飞机旅行");
}
}
package test23;
public class BicycleStrategy implements TravelStrategy{
public void travel() {
System.out.println("自行车旅行");
}
}
package test23;
import java.util.Scanner;
public class Client {
public static void main(String[] args) {
Person p = new Person();
System.out.println("请选择:1、飞机 2、火车 3、自行车");
Scanner input=new Scanner(System.in);
int i=input.nextInt();
if(i==1) {
p.setStrategy(new AirplaneStrategy());
}else if(i==2) {
p.setStrategy(new TrainStrategy());
}else if(i==3) {
p.setStrategy(new BicycleStrategy());
}
p.travel();
}
}
package test23;
public class Person {
//聚合策略类对象
private TravelStrategy strategy;
标签:test23,
软件设计,
18,
番外,
package,
System,
class,
new,
public
From: https://www.cnblogs.com/zjsdbk/p/17858417.html