TypeError:__ init __()需要4个位置参数,但是给出了7个

时间:2018-04-25 15:22:07

标签: python multiple-inheritance

class Employee(object):
    def __init__(self,ename,salary,dateOfJoining):
        self.ename=ename
        self.salary=salary
        self.dateOfJoining=dateOfJoining
    def output(self):
        print("Ename: ",self.ename,"\nSalary: ",self.salary,"\nDate Of 
Joining: ",self.dateOfJoining)
class Qualification(object):
    def __init__(self,university,degree,passingYear):
        self.university=university
        self.degree=degree
        self.passingYear=passingYear
    def qoutput(self):
        print("Passed out fom University:",self.university,"\nDegree:",self.degree,"\Passout year: ",self.passingYear)
class Scientist(Employee,Qualification):
    def __int__(self,ename,salary,dateOfJoining,university,degree,passingYear):
        Employee.__init__(self,ename,salary,dateOfJoining)
        Qualification.__init__(self,university,degree,passingYear)
    def soutput(self):
        Employee.output()
        Qualification.output()
a=Scientist('Ayush',20000,'21-04-2010','MIT','B.Tech','31-3-2008')
a.soutput()

我无法找到问题的解决方案,但我无法理解为什么会出现这个TpyeError。我是python的新手。感谢

2 个答案:

答案 0 :(得分:4)

您的科学家类的init函数写为:

def __int__

而不是

def __init__

所以发生的事情是它继承了父类的init函数,它接收的参数更少,然后你发送给了类。

而不是调用父母的init,你应该使用超级函数。

super(PARENT_CLASS_NAME, self).__init__()

这显然适用于所有父功能。

答案 1 :(得分:1)

您的科学家类构造函数拼写错误为__int__而不是__init__。由于没有要从Scientist类中使用的重写构造函数,它在继承链上升级并使用Employee的构造函数,实际上它只使用4个位置参数。只需修正错字就行了。

(您的代码中还有一些其他不好的事情,但我允许其他人对提示进行评论)