第十一周上课练习

Posted 108-com

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十一周上课练习相关的知识,希望对你有一定的参考价值。

1、(1)定义一个汽车类Vehicle,要求如下:(知识点:类的继承 方法的覆盖)
(a)属性包括:汽车品牌brand(String类型)、颜色color(String类型)和速度speed(double类型)。
(b)至少提供一个有参的构造方法(要求品牌和颜色可以初始化为任意值,但速度的初始值必须为0)。
(c)为属性提供访问器方法。注意:汽车品牌一旦初始化之后不能修改。
(d)定义一个一般方法run(),用打印语句描述汽车奔跑的功能
定义测试类VehicleTest,在其main方法中创建一个品牌为“benz”、颜色为“black”的汽车。
package demo.java;

public class Vehicle {
        String brand;
        String color;
        double speed;
        void setCar(String brand,String color,double speed){
            this.brand=brand;
            this.color=color;
            this.speed=speed;
        } 
        void run(){
            System.out.println("品牌为"+brand+"颜色为"+color+"速度为"+speed);
        }
        void setCar(String brand,String color){
            this.brand="null";
        }
}
package demo.java;

public class VehicleTest {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Vehicle p=new Vehicle();
        p.brand="benz";
        p.color="black";
        p.run();
    }

}

技术图片

以上是关于第十一周上课练习的主要内容,如果未能解决你的问题,请参考以下文章

Linux 第十一周上课笔记Apache服务

第十一周总结

Linux 第十一周上课笔记SMTP服务进阶篇

每周学习进度第十一周

学习进度表第十一周

第十一周学习进度条