深入理解面向对象编程时,看到了继承的特性,这里想就继承的方法做一下总结。
继承可以分为两种:单继承和多重继承问题,讨论多继承问题时,就引入了我们今天的主题,super函数的用法。
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')
这里是 直接用父类名加方法名直接调用
结果显示为
Parent
Child
HelloWorld from Parent
Child bar function.
I'm the parent.
接下来看一个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机制里可以保证公共父类仅被执行一次,至于执行的顺序,是按照mro进行的(E.__mro__)。
注意:super继承只能用于新式类,用于经典类时就会报错。
新式类:必须有继承的类,如果没什么想继承的,那就继承object
经典类:没有父类,如果此时调用super就会出现错误:『super() argument 1 must be type, not classobj』