为了账号安全,请及时绑定邮箱和手机立即绑定

源码,没有进行输入限制

public class Test1 {

public static void main(String[] args) {

TransForm[] tra = new TransForm[3];

tra[0] = new Plant("飞机","天空",300);

tra[1] = new Ship("船", "水上", 100);

tra[2] = new Bus("大巴", "路面", 30);

for(TransForm i : tra){

i.print();

}

}

}

/*

 * 飞机,轮船,大巴,运输人的数量和方式不同

 */

abstract class TransForm{

protected String name;

protected String ways;

protected int num;

public TransForm(){}

public TransForm (String name,String ways,int num) {

this.name = name;

this.num = num;

this.ways = ways;

}

public void print(){

System.out.println(this.name+"可以在"+this.ways+"运输"+this.num+"人");

}

}

class Plant extends TransForm{

public Plant (String name,String ways,int num) {

super(name,ways,num);

}

}


class Ship extends TransForm{

private String ways = "water";

public Ship(String name,String ways,int num) {

super(name,ways,num);

}

}

class Bus extends TransForm{

public Bus(String name,String ways,int num) {

super(name,ways,num);

}

}


正在回答

2 回答

main方法哪去了

0 回复 有任何疑惑可以回复我~
#1

嘘___________别说话 提问者

类 Test下面
2018-08-03 回复 有任何疑惑可以回复我~

https://img1.sycdn.imooc.com//5b6426a00001bb3702130096.jpgtest下面

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

源码,没有进行输入限制

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信