java声明三个类独轮车,自行车,汽车
时间: 2023-08-10 15:03:39 浏览: 131
以下是 Java 声明三个类独轮车,自行车和汽车的代码示例:
```java
// 独轮车类
class Unicycle {
private int wheels; // 独轮车只有一个轮子
public Unicycle() {
this.wheels = 1;
}
public int getWheels() {
return this.wheels;
}
}
// 自行车类
class Bicycle {
private int wheels; // 自行车有两个轮子
public Bicycle() {
this.wheels = 2;
}
public int getWheels() {
return this.wheels;
}
}
// 汽车类
class Car {
private int wheels; // 汽车有四个轮子
public Car() {
this.wheels = 4;
}
public int getWheels() {
return this.wheels;
}
}
```
这里我们定义了三个类 `Unicycle`、`Bicycle` 和 `Car`,分别代表独轮车、自行车和汽车。每个类都有一个私有变量 `wheels` 表示它们的轮子数量,并且都有一个公有方法 `getWheels` 用于获取轮子数量。其中,独轮车只有一个轮子,自行车有两个轮子,汽车有四个轮子。
阅读全文