このメソッドは、のメンバー変数をmy_car.drive_car()
に更新することを意図していますが、それでもスーパー クラスから呼び出します。ElectricCar
condition
"like new"
drive_car
Car
my_car = ElectricCar("Flux capacitor", "DeLorean", "silver", 88)
print my_car.condition #Prints "New"
my_car.drive_car()
print my_car.condition #Prints "Used"; is supposed to print "Like New"
何か不足していますか?スーパークラス関数をオーバーライドするよりエレガントな方法はありますか?
class ElectricCar
スーパーから継承class Car
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"