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) 返回值 无。实例
以下展示了使用 super 函数的实例:!/usr/bin/python
-- coding: UTF-8 --
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),然后把类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('HelloWorld') 执行结果:Parent
Child HelloWorld from Parent Child bar fuction I'm the parent.