我有这些课程。
Person
是父类,Student
是子类:
class Person(object):
def __init__(self, name):
self.name = name
class Student(Person):
def __init__(self, avr, name):
self.avr = avr
super(Student, self).__init__(self, name)
当我尝试创建Student
的实例时,我收到此错误:
__init__() takes exactly 2 arguments (3 given)
我的代码出了什么问题?
答案 0 :(得分:5)
如果您使用超级,则不要将self
传递给目标方法。它是隐式传递的。
super(Student, self).__init__(name)
总共2个论点(自我,名字)。当你通过self
时,总共有3个(自我,自我,名字)。
答案 1 :(得分:-1)
您可以使用
super(Student, self).__init__(name)
其中self已传递给 init 方法,因此您无需在__init__
方法中再次将其写出来。
但是如果你使用
super(Student, Student).__init__(self, name)
或
super(Student, self.__class__).__init__(self, name)
你必须用__init__
方法写下自己。