定义一个汽车类(Cae)
时间: 2024-05-24 10:06:26 浏览: 187
汽车的类定义
一个汽车类(Car)可以定义为具有以下属性和方法的类:
属性:
- 品牌(brand):汽车的品牌
- 型号(model):汽车的型号
- 颜色(color):汽车的颜色
- 价格(price):汽车的价格
方法:
- 启动(start):启动汽车
- 加速(accelerate):加速汽车
- 刹车(brake):刹车汽车
- 停止(stop):停止汽车
以下是一个示例代码,演示了如何定义一个汽车类(Car):
```python
class Car:
def __init__(self, brand, model, color, price):
self.brand = brand
self.model = model
self.color = color
self.price = price
def start(self):
print("The car is starting.")
def accelerate(self):
print("The car is accelerating.")
def brake(self):
print("The car is braking.")
def stop(self):
print("The car has stopped.")
# 创建一个汽车对象
car1 = Car("Toyota", "Camry", "Red", 25000)
# 调用汽车对象的方法
car1.start()
car1.accelerate()
car1.brake()
car1.stop()
```
阅读全文