编写汽车类,声名汽车属性:颜色、品牌、车轮数量。汽车方法:汽车跑的方法
时间: 2024-11-03 09:13:51 浏览: 11
在编写一个简单的汽车类示例时,我们可以这样设计:
```java
class Car {
// 定义汽车属性
private String color; // 颜色
private String brand; // 品牌
private int wheels; // 车轮数量
// 构造函数初始化属性
public Car(String color, String brand, int wheels) {
this.color = color;
this.brand = brand;
this.wheels = wheels;
}
// 汽车跑的方法(方法可以有多种实现,这里简单地描述动作)
public void run() {
System.out.println("这辆" + color + "的" + brand + "车正在行驶,共有" + wheels + "个车轮.");
}
// getters 和 setters (用于获取和设置属性)
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public int getWheels() {
return wheels;
}
public void setWheels(int wheels) {
this.wheels = wheels;
}
}
```
在这个例子中,`Car` 类包含了颜色、品牌和车轮数量作为属性,并有一个`run()`方法,描述了汽车运行的基本情况。你可以创建`Car`对象并调用`run()`方法来模拟汽车运行的动作。
阅读全文