(封装)编程:定义一个交通工具类(Vehicle),类中属性有商标(brand)、颜色(color)

public class TestVehicle{
    public static void main(String[] args) {
        Vehicle v = new Vehicle();
        v.setBrand("宝马");
        v.setColor("黑色");
        System.out.println(v.getBrand()+"\t"+v.getColor());
        v.move();
        v.showInfo("宝马","白色");
    }
}
class Vehicle{
    private String brand;
    private String color;
    public void setBrand(String brand){
        this.brand = brand;
    }
    public String getBrand(){
        return brand;
    }
    public void setColor(String color){
        this.color = color;
    }
    public String getColor(){
        return color;
    }
    public Vehicle(){}
    public Vehicle(String brand,String color){
        this.brand = brand;
        this.color = color;
    }
    public void move(){
        System.out.println("我已经启动");
    }
    public void showInfo(String brand,String color){
        System.out.println("商标是"+brand+"\t"+"颜色是"+color);
    }
}

下面是根据您的要求编写的代码,包括Vehicles、Car和Truck类的定义以及main方法的测试: ```java class Vehicles { String brand; String color; public Vehicles(String brand, String color) { this.brand = brand; this.color = color; } public void run() { System.out.println("我已经开动了"); } public void showInfo() { System.out.println("商标:" + brand); System.out.println("颜色:" + color); } } class Car extends Vehicles { int seats; public Car(String brand, String color, int seats) { super(brand, color); this.seats = seats; } public void showCar() { showInfo(); System.out.println("座位数:" + seats); } } class Truck extends Vehicles { float load; public Truck(String brand, String color, float load) { super(brand, color); this.load = load; } public void showTruck() { showInfo(); System.out.println("载重:" + load + "吨"); } } public class Main { public static void main(String[] args) { Car car = new Car("BMW", "红色", 4); car.run(); car.showCar(); System.out.println("--------------------"); Truck truck = new Truck("Volvo", "蓝色", 10.5f); truck.run(); truck.showTruck(); } } ``` 这段代码中,我们定义了一个名为Vehicles的基类,包含了String类型的成员属性brandcolor以及成员方法run和showInfo。在构造方法中,我们初始化了这两个属性。 然后,我们定义了Car类和Truck类,它们分别继承自Vehicles类。Car类增加了int型的成员属性seats,并且定义了showCar方法来显示小汽车的信息。Truck类增加了float型的成员属性load,并且定义了showTruck方法来显示卡车的信息。这两个子类的构造方法分别调用了父类的构造方法来初始化基类的成员属性。 最后,在main方法中,我们创建了一个Car对象和一个Truck对象,并测试了它们的运行和显示信息的功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值