當前位置:
首頁 > 知識 > Java入門第二季6.1項目代碼

Java入門第二季6.1項目代碼

完成了項目要求的展示內容,並沒有做進一步的完善,以下代碼僅供參考

父類Cars:

//車的序號、名稱、租金、載貨量、載客量public class Cars { public String carsname;//名稱 public int id,personLoad;//序號、載客量 public double carsrental,goodLoad; //租金、載貨量}

子類客車Bus:

//車的子類--客車,設置客車的序號、名稱、租金、載客量public class Bus extends Cars { public Bus(int id,String carsname,double carsrental,int personLoad){ //客車子類的構造方法 this.id=id; this.carsname=carsname; this.carsrental=carsrental; this.personLoad=personLoad; }}

子類貨車Truck:

//車的子類--貨車,設置貨車的序號、名稱、租金、載貨量public class Truck extends Cars { public Truck(int id,String carsname,double carsrental,int goodLoad){ //貨車子類的構造方法 this.id=id; this.carsname=carsname; this.carsrental=carsrental; this.goodLoad=goodLoad; }}

子類皮卡PickUp:

//車的子類--皮卡,設置客車的序號、名稱、租金、載客量、載貨量public class PickUp extends Cars { public PickUp(int id,String carsname,double carsrental,int personLoad,double goodLoad) { //皮卡子類的構造方法 this.id=id; this.carsname=carsname; this.carsrental=carsrental; this.personLoad=personLoad; this.goodLoad=goodLoad; }}

答答租車系統:

import java.util.Scanner;public class Users { static int carsnum,carsday,allpersons; //static靜態變數保證類內的所有對象都能使用該成員 變數,分別是租車的數量、天數和總載客量 static double allgoods,allmoney;//總載貨量、總價 static int[] carsid; //車的序號 //創建一個數組並初始化,數組類型是父類Cars的各子類的對象 static Cars[] carsForRent=; public static void main(String[] args) { // TODO Auto-generated method stub Users user=new Users(); user.isUsed(); carsnum=user.carsRentNum(); carsid=new int[carsnum]; //用戶輸入的需要租車的數量即為數組的長度 for(int i=1;i

在Eclipse中運行即可。

點擊展開全文

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 java學習吧 的精彩文章:

畢業迷茫?java如何輕鬆高薪就業
能打出這樣的網頁,找不到女朋友你找我!

TAG:java學習吧 |

您可能感興趣

TrustNote項目周報——2018年4月第三期
EVO Japan 2019 街霸5 拳皇14 入選比賽項目
WCG2019比賽項目公開《Dota2》成為首個入駐項目
WCG2019比賽項目公開 《Dota2》成為首個入駐項目
第八代酷睿商用旗艦:戴爾Latitude 7490重點項目評測
EVO Japan 2019《街霸5》《拳皇14》等遊戲入選比賽項目
vue.js 2.0 項目開發小結
2017 年度碼雲新增項目排行榜 TOP 50,為它們打「call
VR時代:周VR項目中標榜(05.21-25)
2018年1月份GitHub上最火的Python項目
美空軍將在2018財年第四季度發布新項目Mark 21A再入飛行器的徵求建議書草案
周VR/AR項目中標榜(03.26-30)
2018年最火的三十個Python項目!
Gartner分享2018年Top10安全項目
VR時代:本周VR項目中標榜(03.05-09)
180+Python開源項目,15大領域代碼隨你挑
VR時代:本周VR項目中標榜(05.02-04)
樂土投資項目再呈亮點:Immune-Onc入選「Class of 2018」榜單
war3還是來了!《魔獸爭霸3》成為WCG2019第四個比賽項目
Caffeinated 6.828:實驗 6:最終的 JOS 項目