java??????????????????????????????Vehicle????????????????????????????????????????????? ?????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java??????????????????????????????Vehicle????????????????????????????????????????????? ?????????????相关的知识,希望对你有一定的参考价值。
?????????main?????? speed yellow ?????? ????????? ?????? ?????? nbsp set
????????????????????????C?????????C++???Java???????????????????????????ppt?????????????????????????????????????????????18476275715
?????????????????????Vehicle????????????????????????????????????????????? ??????????????????
???a??????????????????????????????brand???String??????????????????color???String??????????????????speed???double????????????
???b??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????0??????
???c?????????????????????????????????????????????????????????????????????????????????????????????
???d???????????????????????????run()????????????????????????????????????????????????
???????????????VehicleTest?????????main?????????????????????????????????benz??????????????????black???????????????
(2)????????????Vehicle?????????????????????Car??????????????????
???a????????????????????????????????????loader???int ????????????
???b????????????????????????????????????????????????
???c???????????????run()????????????????????????????????????????????????
???d??????????????????Test?????????main?????????????????????????????????Honda??????????????????red??????????????????2???????????????
public class Vehicle { public String brand; public String color; public double speed=0; void setVehicle(String brand,String color) { this.brand=brand; this.color=color; } void access(String brand,String color,double speed) { this.brand=brand; this.color=color; this.speed=speed; } void run() { System.out.println("????????????????????????"+this.brand+"?????????:"+this.color+"?????????"+this.speed); } }
public class VehicleTest { public static void main(String args[]) { Vehicle c; c=new Vehicle(); c.setVehicle("benz", "yellow"); c.run(); c.access("benz", "black", 300); c.run(); } }
public class Car extends Vehicle { int loader; void access(String brand,String color,double speed,int loader) { this.brand=brand; this.color=color; this.speed=speed; this.loader=loader; } void run() { System.out.println("????????????????????????"+this.brand+"?????????"+this.color+"?????????"+this.speed+"????????????"+this.loader);; } }
public class Test { public static void main(String args[]) { Car c; c=new Car(); c.access("Honda", "red", 300, 2); c.run(); } }
????????????????????????????????????????????????????????????????????????????????????
以上是关于java??????????????????????????????Vehicle????????????????????????????????????????????? ?????????????的主要内容,如果未能解决你的问题,请参考以下文章