美文网首页程序员
python之super()函数的用法

python之super()函数的用法

作者: cf6d95617c55 | 来源:发表于2018-12-22 22:19 被阅读11次

title: python之super()函数的用法
date: 2018-12-22 21:56:23
categories: python
tags:

  • pythontags:

描述

super() 函数是用于调用父类(超类)的一个方法。
super 是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。
MRO 就是类的方法解析顺序表, 其实也就是继承父类方法时的顺序表。

语法

以下是super()方法的语法

super(type[,object-or-type])

参数

type --- 类
object-or-type --- 类,一般是self
Python3.x 和 Python2.x 的一个区别是: Python 3 可以使用直接使用 super().xxx 代替 super(Class, self).xxx :
Python3.x 实例:

class A:
    pass
class B(A):
    def add(self,x):
        super().add(x)

Python2.x 实例:

class A(object):   # Python2.x 记得继承 object
    pass
class B(A):
    def add(self, x):
        super(B, self).add(x)

实例

class FooParent(object):
    def __init__(self):
        self.parent='I am the parent.'
        print ('parent')

    def bar(self,message):
        print("%s from Parent" %message)


class FooChild(FooParent):
    def __init__(self):
        # super(FooChild,self) 首先找到 FooChild 的父类(就是类 FooParent),然后把类B的对象 FooChild 转换为类 FooParent 的对象
        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('hello,world')

相关文章

  • python之super()函数的用法

    title: python之super()函数的用法date: 2018-12-22 21:56:23catego...

  • python中super()的一些用法

    在看python高级编程这本书的时候,在讲到super的时候,产生了一些疑惑,super在python中的用法跟其...

  • 2018-06-30 Python File

    python with as的用法 Python open() 函数

  • super与继承关系

    super函数是一个很好的改写父类的方法,前几天刚好接触到了这个函数,就研究了一下。 用法 super() 函数是...

  • 11.函数的复写(override)

    1.函数的复写 2.使用super调用父类的成员函数 super和this的用法很类似,一个调用父类,一个调用子类...

  • 怎么理解Python类中的super函数

    前言 在Python类的继承中,经常能看到super函数的存在,那super函数主要的作用,以及如何理解和使用好这...

  • Python super() 函数

    描述 super() 函数是用于调用父类(超类)的一个方法。super 是用来解决多重继承问题的,直接用类名调用父...

  • Python super() 函数

  • Python super() 函数

    super() 函数用于调用下一个父类(超类)并返回该父类实例的方法。 super 是用来解决多重继承问题的,直接...

  • Python super() 函数

    描述 super() 函数是用于调用父类(超类)的一个方法。 super 是用来解决多重继承问题的,直接用类名调用...

网友评论

    本文标题:python之super()函数的用法

    本文链接:https://www.haomeiwen.com/subject/jcgwkqtx.html