1、编写一个程序,设计一个汽车抽象类vehicle,包含的属性有车轮 个数wheels和车重weight。
时间: 2023-06-01 21:07:23 浏览: 157
设计一个Car类
非常感谢您的提问。根据您的要求,我可以为您编写一个汽车抽象类Vehicle,其中包含车轮个数wheels和车重weight属性。具体的实现可以参考以下代码:
```
abstract class Vehicle {
protected int wheels;
protected int weight;
public Vehicle(int wheels, int weight) {
this.wheels = wheels;
this.weight = weight;
}
public int getWheels() {
return wheels;
}
public int getWeight() {
return weight;
}
public abstract void run();
}
```
在这个抽象类中,我们将车轮个数和车重作为属性进行了定义,并且编写了一个构造函数来初始化这些属性。同时,我们也定义了一个getWheels()和getWeight()方法来获取这些属性的值。最后,我们使用了一个抽象方法run()来表示汽车的运行行为,具体的实现可以在子类中进行。
希望这个回答能够帮助您,如果您有任何其他的问题,请随时问我。
阅读全文