继承属性:定义交通工具类Vehicle,一个小车类Car,一个公共汽车Bus类,实现Car、Bus对Vehicle的继承

java中输出以下内容:

定义交通工具类Vehicle,一个小车类Car,一个公共汽车Bus类,实现Car、Bus对Vehicle的继承,按以下要求设计:

①交通工具类Vehicle,属性包括:品牌、颜色color;方法包括构造方法用来初始化两个成员变量,show方法用来显示其两个成员属性。

②小车类Car,属性包括可乘坐的人数passengers;方法包括构造方法用来初始化三个成员变量,show方法用来显示其三个成员属性。

③一个公共汽车类Bus,属性包括:包括可乘坐的人数passengers;方法包括构造方法用来初始化三个成员变量,show方法用来显示其三个成员属性(要求使用super关键字调用父类的成员方法)。

④创建Test 类作为主类,在main方法中创建Car、Bus的对象,为其设置各属性,并调用show方法显示其所有属性。

class Vehicle{
	String brand;
	String color;
	public Vehicle(String brand,String color) {
		this.brand=brand;
		this.color=color;
	}
 public void show() {
	System.out.println("品牌:"+brand);
	System.out.println("颜色:"+color);
}
}
class Car extends Vehicle{
int passengers;
	public Car(String brand,String color,int passengers) {
		super(brand, color);
		this.passengers=passengers;
	}
	 public void show() {
			System.out.println("品牌:"+brand);
			System.out.println("颜色:"+color);
			System.out.println("可乘坐的人数:"+passengers);
			System.out.println("----------------");
		}
}
class Bus extends Vehicle{
int passengers;

	public Bus(String brand,String color,int passengers) {
	super(brand, color);
	this.passengers=passengers;
}
	 public void show() {
			System.out.println("品牌:"+brand);
			System.out.println("颜色:"+color);
			System.out.println("可乘坐的人数:"+passengers);
			
		}
}
public class Test {
	public static void main(String[] args) {
	Car hh=new Car("本田", "白色",6 );
	Bus hh2=new Bus("丰田", "黑色", 8);
	hh.show();
	hh2.show();
	}
}

运行结果:继承属性:定义交通工具类Vehicle,一个小车类Car,一个公共汽车Bus类,实现Car、Bus对Vehicle的继承_第1张图片

你可能感兴趣的:(java,java,编程语言,继承)