gpt4 book ai didi

python - “子类”对象没有属性 'attribute_name'

转载 作者:太空宇宙 更新时间:2023-11-03 21:36:04 24 4
gpt4 key购买 nike

我无法检索仅由继承的子类创建的变量的值。另外,在子类的 init 中更改从父类继承的变量的值也不适用。

这是父类:

class Car():

def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
self.odometer_reading = 0

def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)

def get_descriptive_name(self):
long_name = str(self.year) + ' ' + self.make + ' ' + self.model
return long_name.title()

def read_odometer(self):
print("This car has " + str(self.odometer_reading) + " miles on it.")

def update_odometer(self, mileage):
if mileage >= self.odometer_reading:
self.odometer_reading = mileage
else:
print("You can't roll back an odometer!")

def increment_odometer(self, miles):
self.odometer_reading += miles

这是子类:

class ElectricCar(Car):

def __init___(self, make, model, year):
super(ElectricCar, self).__init__(make, model, year)
self.odometer_reading = 100
self.battery_size = 70

def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)

def describe_battery(self):
print(self.battery_size)

现在,如果我尝试运行此代码:

my_tesla = ElectricCar('tesla', 'model s', 2016)
print(my_tesla)
print(my_tesla.describe_battery())

我收到以下异常:

<class '__main__.ElectricCar'>:
{'make': 'tesla', 'model': 'model s', 'year': 2016, 'odometer_reading': 0}

AttributeError: 'ElectricCar' object has no attribute 'battery_size'

我有一个 oddmeter_reading 变量,其父类中的值为 0。我从child class改成100,但是不适用。另外,变量battery_size仅在子类中设置,不会在init中创建。

有什么问题吗?我错过了什么?

最佳答案

您的 ElectricCar 类中存在拼写错误。您使用 3 个下划线而不是两个下划线定义了方法 __init___,因此在创建新实例时不会调用该方法。

如果您将 ElectricCar 类更改为:

class ElectricCar(Car):

def __init__(self, make, model, year): #Note the two underscores
super(ElectricCar, self).__init__(make, model, year)
self.odometer_reading = 100
self.battery_size = 70

def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)

def describe_battery(self):
print(self.battery_size)

那么这将是输出:

<class '__main__.ElectricCar'>: {'make': 'tesla', 'model': 'model s', 'year': 2016, 
'odometer_reading': 100, 'battery_size': 70}
70
None

关于python - “子类”对象没有属性 'attribute_name',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53238824/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com