• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Jraino3o
博客园    首页    新随笔    联系   管理    订阅  订阅

十四周作业

• 2、设计2个类,要求如下:(知识点:类的继承 方法的覆盖) [必做题]
• 2.1 定义一个汽车类Vehicle,
• 2.1.1 属性包括:汽车品牌brand(String类型)、颜色color(String类型)和速度speed(double类型)。
• 2.1.2 至少提供一个有参的构造方法(要求品牌和颜色可以初始化为任意值,但速度的初始值必须为0)。
• 2.1.3 为属性提供访问器方法。注意:汽车品牌一旦初始化之后不能修改。
• 2.1.4 定义一个一般方法run(),用打印语句描述汽车奔跑的功能
• 2.1.5 在main方法中创建一个品牌为―benz、颜色为―black的汽车。
• 2.2 定义一个Vehicle类的子类轿车类Car,要求如下:
• 2.2.1 轿车有自己的属性载人数loader(int 类型)。
• 2.2.2 提供该类初始化属性的构造方法。
• 2.2.3 重新定义run(),用打印语句描述轿车奔跑的功能。
• 2.2.4 在main方法中创建一个品牌为―Honda、颜色为―red,载人数为2人的轿车.

package Test8;

public class vehicle {
    String brand;
    String color;
    double speed;

    public vehicle() {
        super();
    }

    public vehicle(String brand, String color) {
        super();
        this.brand = brand;
        this.color = color;
    }

    public vehicle(String brand, String color, double speed) {
        super();
        this.brand = brand;
        this.color = color;
        this.speed = 0;
    }

    public String getBrand() {
        return brand;
    }

    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }

    public double getSpeed() {
        return speed;
    }

    public void setSpeed(double speed) {
        this.speed = speed;
    }

    public void run() {
        System.out.println("汽车品牌为:" + brand);
        System.out.println("颜色为:" + color);
        System.out.println("速度为:" + speed);
    }
}
package Test8;

public class Car extends vehicle {
    int loader;

    public Car(String brand, String color, int loader) {
        super(brand, color);
        this.loader = loader;
    }

    @Override
    public void run() {
        System.out.println("汽车品牌为:" + brand);
        System.out.println("颜色为:" + color);
        System.out.println("速度为:" + speed);
        System.out.println("载人数为:" + loader);
    }
}
package Test8;

public class TestVehicle {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        vehicle v1 = new vehicle("benz", "black");
        v1.run();
        System.out.println("===================");
        Car v2 = new Car("Honda", "red", 2);
        v2.run();
    }

}

 

 

• 3、设计三个类,分别如下:(知识点:抽象类及抽象方法) [必做题]
• 3.1 设计Shape表示图形类,有面积属性area、周长属性per,颜色属性color,有两个构造方法(一个是默认的、一个是为颜色赋值的),还有3个抽象方法,分别是:getArea计算面积、getPer计算周长、showAll输出所有信息,还有一个求颜色的方法getColor。
• 3.2 设计 2个子类:
• 3.2.1 Rectangle表示矩形类,增加两个属性,Width表示长度、height表示宽度,重写getPer、getArea和showAll三个方法,另外又增加一个构造方法(一个是默认的、一个是为高度、宽度、颜色赋值的)。
• 3.2.2 Circle表示圆类,增加1个属性,radius表示半径,重写getPer、getArea和showAll三个方法,另外又增加两个构造方法(为半径、颜色赋值的)。
• 3.3 在main方法中,声明创建每个子类的对象,并调用2个子类的showAll方法。

package Test8;

public abstract class shape {
    double area;
    double per;
    String color;

    public shape() {
        super();
    }

    public shape(String color) {
        super();
        this.color = color;
    }

    public abstract double getArea();

    public abstract double getPer();

    public String getColor() {
        return color;
    }

    public abstract void showall();
}
package Test8;

public class rectangle extends shape {
    double width;
    double height;

    public double getArea() {
        return width * height;
    }

    public double getPer() {
        return (height + width) * 2;
    }

    public void showall() {
        System.out.println("颜色为:" + color);
        System.out.println("宽为:" + width);
        System.out.println("高为:" + height);
    }

    public rectangle() {
        super();
    }

    public rectangle(String color, double width, double height) {
        super(color);
        this.width = width;
        this.height = height;
    }

}
package Test8;

public class circle extends shape {
    double radius;

    public double getArea() {
        return 3.14*radius*radius;
    }

    public double getPer() {
        return 2*3.14*radius;
    }

    public void showall() {
        System.out.println("颜色为:" + color);
        System.out.println("半径为:" + radius);
    }

    public circle() {
        super();
    }

    public circle(String color, double radius) {
        super(color);
        this.radius = radius;
    }

}
package Test8;

public class TestShape {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        rectangle r1 = new rectangle("黑色", 5, 6);
        r1.showall();
        System.out.println("===============");
        circle c1 = new circle("白色", 7);
        c1.showall();
    }

}

 

posted @ 2021-06-06 18:32  Jraino3o  阅读(50)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3