12345
public class Test {
public static void main(String[] args) {
Trans t=new Trans();
Trans t1=new Bus();
Trans t2=new Airplane();
Trans t3=new Ship();
t.show();
t1.show();
t2.show();
t3.show(); }}public class Test {
public static void main(String[] args) {
Trans t=new Trans();
Trans t1=new Bus();
Trans t2=new Airplane();
Trans t3=new Ship();
t.show();
t1.show();
t2.show();
t3.show(); }}2019-08-12
举报