super() 函數是用于調用父類(超類)的一個方法。
super() 是用來解決多重繼承問題的,直接用類名調用父類方法在使用單繼承的時候沒問題,但是如果使用多繼承,會涉及到查找順序(MRO)、重複調用(鑽石繼承)等種種問題。
MRO 就是類的方法解析順序表, 其實也就是繼承父類方法時的順序表。
文法
以下是 super() 方法的文法:
super(type[, object-or-type])
參數
- type – 類。
- object-or-type – 類,一般是 self
super(SubClass, self).method() 的意思是,根據self去找SubClass的‘父親’,然後調用這個‘父親’的method() 。
super(本類名,self)
Python3.x 和 Python2.x 的一個差別是: Python 3 可以使用直接使用 super().xxx 代替 super(Class, self).xxx :
Python 3.x 執行個體:
class A:
def add(self, x):
y = x+1
print(y)
class B(A):
def add(self, x):
super().add(x)
b = B()
b.add(2) # 3
Python 2.x 執行個體:
class A(object): # Python2.x 記得繼承 object
def add(self, x):
y = x+1
print(y)
class B(A):
def add(self, x):
super(B, self).add(x)
b = B()
b.add(2) # 3
傳回值
無。
以下展示了使用 super 函數的執行個體:
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)
if __name__ == '__main__':
fooChild = FooChild()
fooChild.bar('HelloWorld')
執行結果:
Parent
Child
HelloWorld from Parent
Child bar fuction
I'm the parent.
如果在子類中也定義了
_init_()
函數,那麼該如何調用基類的
_init_()
函數:
方法一、明确指定 :
class C(P):
def __init__(self):
P.__init__(self)
print ('calling Cs construtor')
方法二、使用super()方法 :
'''
學習中遇到問題沒人解答?小編建立了一個Python學習交流群:711312441
尋找有志同道合的小夥伴,互幫互助,群裡還有不錯的視訊學習教程和PDF電子書!
'''
class C(P):
def __init__(self):
super(C,self).__init__()
print ('calling Cs construtor')
c=C()
Python中的super()方法設計目的是用來解決多重繼承時父類的查找問題,是以在單重繼承中用不用 super 都沒關系;但是,使用 super() 是一個好的習慣。一般我們在子類中需要調用父類的方法時才會這麼用。
另外:避免使用
super(self.__class__, self)
,一般情況下是沒問題的,就是怕極端的情況。
class A(object):
def __init__(self):
self.n = 10
def minus(self, m):
self.n -= m
class B(A):
def __init__(self):
self.n = 7
def minus(self, m):
super(B, self).minus(m)
self.n -= 2
b = B()
b.minus(2)
print(b.n)
class C(A):
def __init__(self):
self.n = 12
def minus(self, m):
super(C, self).minus(m)
self.n -= 5
class D(B, C):
def __init__(self):
self.n = 15
def minus(self, m):
super(D, self).minus(m)
self.n -= 2
d = D()
d.minus(2)
print(d.n)
print(D.__mro__)
3
4
(<class '__main__.D'>, <class '__main__.B'>, <class '__main__.C'>, <class '__main__.A'>, <class 'object'>)