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

嗒嗒租车系统----类

标签:
Java

package com.imooc;

public class Car {
//车名、租金/天 容量/载货量
public String name;
public int rentmoney;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getRentmoney() {
return rentmoney;
}
public void setRentmoney(int rentmoney) {
this.rentmoney = rentmoney;
}
}

/////只有载客
package com.imooc;

public class PassengerCar extends Car{//只有载客量
private int peopleCapacity;
public PassengerCar(String name,int rentmoney,int peopleCapacity){
this.name = name;
this.rentmoney = rentmoney;
this.peopleCapacity = peopleCapacity;
}
public int getPeopleCapacity() {
return peopleCapacity;
}
public void setPeopleCapacity(int peopleCapacity) {
this.peopleCapacity = peopleCapacity;
}
}
package com.imooc;

public class PickUp extends Car {//载人又载货
private int peopleCapacity;
private float cargoCapacity;
public PickUp(String name,int rentmoney,int peopleCapacity, float cargoCapacity) {
this.name = name;
this.rentmoney = rentmoney;
this.peopleCapacity = peopleCapacity;
this.cargoCapacity = cargoCapacity;
}
public int getPeopleCapacity() {
return peopleCapacity;
}
public void setPeopleCapacity(int peopleCapacity) {
this.peopleCapacity = peopleCapacity;
}
public float getCargoCapacity() {
return cargoCapacity;
}
public void setCargoCapacity(float cargoCapacity) {
this.cargoCapacity = cargoCapacity;
}

}
package com.imooc;
//只载货
public class TrunkCar extends Car {//只载货
private float cargoCapacity;

public TrunkCar(String name,int rentmoney,float cargoCapacity) {
    this.name = name;
    this.rentmoney = rentmoney;
    this.cargoCapacity = cargoCapacity;
}

public float getCargoCapacity() {
    return cargoCapacity;
}

public void setCargoCapacity(float cargoCapacity) {
    this.cargoCapacity = cargoCapacity;
}

}

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 2
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消