结尾的练习题是要写这种的么?
package practice;
public class Test {
public static void main(String[]args) {
Vehicle airplane=new Airplane();
airplane.transportation();
Vehicle bus =new Bus();
bus.transportation();
Vehicle motorcycle=new Motorcycle();
motorcycle.transportation();
Vehicle steamer=new Steamer();
steamer.transportation();
Vehicle yavht =new Yavht();
yavht.transportation();
}
}