码迷,mamicode.com
首页 > 其他好文 > 详细

super,多继承

时间:2017-09-24 13:46:21      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:pytho   类方法   __init__   run   一致性   int   bar   elf   col   

1、super 是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,

  但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。

  总之前人留下的经验就是:保持一致性。要不全部用类名调用父类,要不就全部用 super,不要一半一半
  普通继承版

      class FooParent(object):
        def __init__(self):
          self.parent = ‘I\‘m the parent.‘
          print ‘Parent‘

        def bar(self,message):
          print message, ‘from Parent‘

      class FooChild(FooParent):
        def __init__(self):
          FooParent.__init__(self)
          print ‘Child‘

        def bar(self,message):
          FooParent.bar(self,message)
          print ‘Child bar function.‘
          print self.parent

      if __name__==‘__main__‘:
        fooChild = FooChild()
        fooChild.bar(‘HelloWorld‘)


    super继承版

      class FooParent(object):
        def __init__(self):
          self.parent = ‘I\‘m the parent.‘
          print ‘Parent‘

        def bar(self,message):
          print message,‘from Parent‘

      class FooChild(FooParent):
        def __init__(self):
          super(FooChild,self).__init__()
          print ‘Child‘

        def bar(self,message):
          super(FooChild, self).bar(message)
          print ‘Child bar fuction‘
          print self.parent

      if __name__ == ‘__main__‘:
        fooChild = FooChild()
        fooChild.bar(‘HelloWorld‘)

      程序运行结果相同,为:

      Parent
      Child
      HelloWorld from Parent
      Child bar fuction
      I‘m the parent.

      普通继承和super继承是一样的。但是其实它们的内部运行机制不一样,这一点在多重继承时体现得很明显。

      在super机制里可以保证公共父类仅被执行一次,至于执行的顺序,是按照mro进行的(E.__mro__)。python3中 super().__init__( )

2、多继承以及方法调用顺序
      class Car(object):
        def wheel_run(self):
                """车在用轮子移动"""
          print("-----通过轮子在移动----")

        def fire(self):
                """车开枪"""
          print("-----机关枪在发射子弹-----")


      class Tank(object):
        def fire(self):
              """开火"""
          print("----发射炮弹----")


      class ZJC(Tank, Car):
              """开火"""
        # super().fire()
        # super().fire()
        Tank.fire(self)
        Car.fire(self)
        print("-----发射火箭弹-----")


      zjc = ZJC()
      zjc.wheel_run()
      zjc.fire()

      print(ZJC.__mro__) # 使用类的名字.__mro__ 能够查看将来找方法的时候的顺序

super,多继承

标签:pytho   类方法   __init__   run   一致性   int   bar   elf   col   

原文地址:http://www.cnblogs.com/lvhonglei-python/p/7586862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!