1、(1)定义一个汽车类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人的轿车。
1 public class Vehicle { 2 public String brand; 3 public String color; 4 double speed=0; 5 public String getBrand() { 6 return brand; 7 } 8 public void setBrand(String brand) { 9 this.brand = brand; 10 } 11 public String getColor() { 12 return color; 13 } 14 public void setColor(String color) { 15 this.color = color; 16 } 17 public double getSpeed() { 18 return speed; 19 } 20 public void setSpeed(double speed) { 21 this.speed = speed; 22 } 23 public void run(){ 24 System.out.println("一辆"+this.color+"的"+this.brand+"正在用"+this.speed+"的速度行驶"); 25 } 26 }
1 public class VehicleTest { 2 public static void main(String[] args) { 3 Vehicle c=new Vehicle(); 4 c.brand="benz"; 5 c.color="black"; 6 c.run(); 7 } 8 }
1 public class Car extends Vehicle{ 2 int loader; 3 4 public int getLoader() { 5 return loader; 6 } 7 8 public void setLoader(int loader) { 9 this.loader = loader; 10 } 11 public void run(){ 12 System.out.println("一辆"+this.color+"载人数为"+this.loader+"的"+this.brand+"正在用"+this.speed+"的速度行驶"); 13 } 14 }
1 public class Test { 2 3 public static void main(String[] args) { 4 Car c=new Car(); 5 c.brand="Honda"; 6 c.color="red"; 7 c.loader=2; 8 c.run(); 9 } 10 }
2、设计四个类,分别是:(知识点:抽象类及抽象方法)
(1)Shape表示图形类,有面积属性area、周长属性per,颜色属性color,有两个构造方法(一个是默认的、一个是为颜色赋值的),还有3个抽象方法,分别是:getArea计算面积、getPer计算周长、showAll输出所有信息,还有一个求颜色的方法getColor。
(2)2个子类:
1)Rectangle表示矩形类,增加两个属性,Width表示长度、height表示宽度,重写getPer、getArea和showAll三个方法,另外又增加一个构造方法(一个是默认的、一个是为高度、宽度、颜色赋值的)。
2)Circle表示圆类,增加1个属性,radius表示半径,重写getPer、getArea和showAll三个方法,另外又增加两个构造方法(为半径、颜色赋值的)。
(3)一个测试类PolyDemo,在main方法中,声明创建每个子类的对象,并调用2个子类的showAll方法。
1 public abstract class Shape { 2 protected double area; 3 protected double per; 4 protected String color; 5 6 public Shape() { 7 } 8 9 public Shape(String color) { 10 this.color = color; 11 } 12 13 public abstract void getArea(); 14 15 public abstract void getPer(); 16 17 public abstract void showAll(); 18 19 }
1 public class Rectangle extends Shape { 2 double width; 3 double height; 4 5 public Rectangle() { 6 } 7 8 public Rectangle(double width, double height, String color) { 9 super(); 10 this.width = width; 11 this.height = height; 12 this.color = color; 13 } 14 15 public void getArea() { 16 area = width * height; 17 } 18 19 public void getPer() { 20 per = (width + height) * 2; 21 } 22 23 public void showAll() { 24 System.out.println("矩形面积为:" + area + ",周长为:" + per + ",颜色:" + color); 25 } 26 }
1 public class Circle extends Shape { 2 double radius; 3 4 public Circle() { 5 } 6 7 public Circle(double radius, String color) { 8 this.color = color; 9 this.radius = radius; 10 } 11 12 public void getArea() { 13 area = radius * radius * 3.14; 14 } 15 16 public void getPer() { 17 per = 2 * radius * 3.14; 18 } 19 20 public void showAll() { 21 System.out.println("圆的面积为:" + area + ",周长为:" + per + ",颜色:" + color); 22 } 23 }
1 public class PolyDemo { 2 3 public static void main(String[] args) { 4 // TODO Auto-generated method stub 5 Shape a = new Circle(2, "紫色"); 6 Shape b = new Rectangle(3, 6, "粉色"); 7 a.getArea(); 8 a.getPer(); 9 a.showAll(); 10 b.getArea(); 11 b.getPer(); 12 b.showAll(); 13 } 14 }