【问题标题】:Classes and inheritance in Python 3.6 (Spyder)Python 3.6 (Spyder) 中的类和继承
【发布时间】:2018-04-16 12:37:39
【问题描述】:

我有初学者 Python 问题。我有一个名为“Animal”的超类,我正在使用继承来创建一个“Dog”类。

 class Animal:
    __name = ""
    __height = 0
    __weight = 0
    __sound = 0

    #constructor
    def __init__(self, name, height, weight, sound):
        self.__name = name
        self.__height = height
        self.__weight = weight
        self.__sound = sound

    def set_name(self,name):
        self.__name = name

    def get_name(self):
        return self.__name

    def set_height(self,height):
        self.__height = height

    def get_height(self):
        return self.__height

    def set_weight(self,weight):
        self.__weight = weight

    def get_weight(self):
        return self.__weight

    def set_sound(self,sound):
        self.__sound = sound

    def get_sound(self):
        return self.__sound

    def get_type(self):
        print("Animal")

    def toString(self):
        return "{} is {} cm tall and {} kg and says 
{}".format(self.__name,self.__height,self.__weight,self.__sound)

human = Animal("Rover",55,25,"woof")

print(human.toString())

#Inheritance
class Dog(Animal):
    __owner = "" #Inherit all variables from Animal class. Add an owner 
 variable. Every dog class has an owner variable, but not every
             #animal class has an owner variable.

    #overwrite the constructor 
    def __init__(self, name, height, weight, sound, owner):
        self.__owner = owner
        super(Dog,self).__init__(name, height, weight, sound) #let Animal 
superclass handle the other variables.

    def set_owner(self,owner):
        self.__owner = owner

    def get_owner(self):
        return self.__owner

    def get_type(self):
        print("Dog")

    def toString(self):
        return "{} is {} cm tall and {} kg and says {}. His owner is 
{}".format(self.__name,self.__height,self.__weight,self.__sound,self.__owner)

 myDog = Dog("Rover",55,25,"woof","Alex")

 print(myDog.toString())

我收到以下错误:

AttributeError: 'Dog' object has no attribute '_Dog__name'

Dog 子类是否无法从 Animal 超类继承 name 变量?

我正在使用 Python 3.6 和 Spyder 3.2.3

【问题讨论】:

  • 你覆盖了构造函数。你希望它做什么?

标签: python class object inheritance attributes


【解决方案1】:

您无需在 Python 中执行任何这些操作。教你编程的人似乎想写 Java,而不是 Python。在 Python 中你只写这个:

class Animal:
    def __init__(self, name, height, weight, sound):
        self.name = name
        self.height = height
        self.weight = weight
        self.sound = sound

    def __str__(self):
        return "{} is {} cm tall and {} kg and says {}".format(self.name,self.height,self.weight,self.sound)


class Dog(Animal):
    def __init__(self, name, height, weight, sound, owner):
        self.owner = owner
        super(Dog,self).__init__(name, height, weight, sound)

    def __str__(self):
        return "{} is {} cm tall and {} kg and says {}. His owner is  {}".format(self.name,self.height,self.weight,self.sound,self.owner)


my_dog = Dog("Rover",55,25,"woof","Alex")
print(my_dog)

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2018-12-23
    • 2011-08-01
    • 2016-06-28
    • 2015-09-04
    • 2019-01-18
    • 2019-01-28
    • 2018-02-04
    相关资源
    最近更新 更多