为了账号安全,请及时绑定邮箱和手机立即绑定

多重继承的时候需要用super函数的问题

请问如果在多重继承的时候需要用super函数来继承的两个属性或者类方法分别来自于两个父类,应该要怎么写super函数?比如grade和interest分别来自于A和B

class C(A, B):
    def __init__(self, grade, interest):
        super(C, self).__init__(grade, interest)

这样写会不会出问题,万一A和B中都有grade 和interest属性呢?

正在回答

1 回答

In [14]: class A(object):
   ....:     def __init__(self, grade, interest):
   ....:         print "I am an instance of A"
   ....:         self.grade = grade
   ....:         self.interest = interest
   ....:

In [15]: class B(object):
   ....:     def __init__(self, grade, interest):
   ....:         print "I am an instance of B"
   ....:         self.grade = grade
   ....:         self.interest = interest
   ....:

In [16]: class C(A, B):
   ....:     def __init__(self, grade, interest):
   ....:         print "I am an instance of C"
   ....:         super(C,self).__init__(grade, interest)
   ....:

In [17]: c = C("1","football")
I am an instance of C
I am an instance of A

自己编个小例子就可以看到解答了,这样写的“后果”就是B的__init__没有被调用,我试了其他例子,好像python都只用最近的那个父类,比如A。

0 回复 有任何疑惑可以回复我~
#1

catdav

这个问题我也发现了,好像在多重继承中super只会返回第一个父类,其他父类的__init__没有调用。 在你的例子中,class C(A,B),则super(C,self)返回的是父类A,不会返回父类B;如果改成class C(B,A),则super(C,self)返回的就是父类B,有变成不返回A了。
2015-12-17 回复 有任何疑惑可以回复我~
#2

ywang04 回复 catdav

测试过 同样的结果
2016-07-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

多重继承的时候需要用super函数的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信