0

成员变量condition应该从 更改"new""like new"一次my_car.drive_car()被调用。但是,此调用仍然从超类执行drive_car函数,class Car而不是class ElectricCar

  • 我错过了什么吗?
  • 有没有更优雅的方法来覆盖超类函数?


    class Car(object):
            condition = "new"

            def __init__(self, model, color, mpg):
                    self.model, self.color, self.mpg = model, color, mpg

            def drive_car(self):
                    self.condition = "used"

    class ElectricCar(Car):
            def __init__(self, battery_type, model, color, mpg):
                    self.battery_type = battery_type
                    super(ElectricCar, self).__init__(model, color, mpg)

            def drive_car(self):
                        self.condition = "like new"

    my_car = ElectricCar("Flux capacitor", "DeLorean", "silver", 88)

    print my_car.condition #Prints "New"
    my_car.drive_car()
    print my_car.condition #Prints "Used" instead of "Like New"
4

1 回答 1

0

这种继承实际上是传统上的“良好的面向对象编程”。虽然还有很多其他方法,但您已经使用的方法是最好的方法。

于 2013-11-17T23:32:18.697 回答