魔铃咔咔
2017-05-04 13:27
父类:
public void Cars(String name,double price,int seat,int load){
this.name=name;
this.price=price;
this.seat=seat;
this.load=load;
}
子类:
public PickCar(String name,double price,int seat,int load){
this.seat=seat;
this.load=load;
this.price=price;
this.name=name;
}
这个是子类里的构造方法吧,构造方法没有返回值,所以不用写返回值类型,即使是void也不行
普通方法viod是返回值为空的类型;没有return;
int是返回值为整形;方法体里要有return;
声明方法都应该申明其类型吧,空类型是void,其他类型也要加入对应类型的声明,如int,char。所以子类也应该加上void申明方法类型
Java入门第二季 升级版
530559 学习 · 6091 问题
相似问题