问答详情
源自:10-1 Java 中的多态

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();	}}


提问者:binzzzZi 2019-08-12 10:09

个回答

  • qq_宁风致
    2019-08-12 21:36:33

    兄得你的问题是啥呢