Python教程

super()调用父类方法使用python

本文主要是介绍super()调用父类方法使用python,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# super(type[, object-or-type]) ,调用父类方法


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

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


class FooChild(FooParent):
    def __init__(self):
        # super(FooChild,self) 首先找到 FooChild 的父类(就是类 FooParent),然后把类 FooChild 的对象转换为类 FooParent 的对象
        super(FooChild, self).__init__()
        print ('Child')

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



fooChild = FooChild()
fooChild.bar('HelloWorld')
这篇关于super()调用父类方法使用python的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!