5分鐘瞭解 Python 中的super函數是如何實現繼承的

Python

Py 2.x 和 Py 3.x 中有一個很大的區別就是類,不管是類的定義仍是類的繼承。Py 3.x 中類的繼承能夠直接使用 super() 關鍵字代替原來的 super(Class, self)。python

那麼 super() 究竟是依據什麼來繼承的呢?今天就來分析下。架構

super()函數根據傳進去的兩個參數具體做用以下:函數

經過第一參數傳進去的類名肯定當前在MRO中的哪一個位置。MRO(Method Resolution Order);學習

經過第二個參數傳進去的self,肯定當前的MRO列表。大數據

def super(cls, inst):
   mro = inst.__class__.mro() #肯定當前MRO列表
   return mro[mro.index(cls) + 1] #返回下一個類

以下代碼:code

class A(object):
	def name(self):
	    print('name is xiaoming')    
	    #super(A,self).name()

class B(object): 
	def name(self):
	    print('name is cat')
      
class C(A,B):
	def name(self):
	    print('name is wang')
	    super(C,self).name()if __name__ == '__main__':

c = C()
print(c.__class__.__mro__)
c.name()

執行以上代碼輸出:當執行C類下的super()函數時,實際調用了A類下的name函數。A中註釋掉了super()函數,因此並無向後繼續執行。而且打印出了當前MRO列表順序爲C,A,B,object.blog

(<class '__main__.C'>, <class '__main__.A'>, <class '__main__.B'>, <class 'object'>)name is wangname is xiaoming

當咱們把A類中的註釋去掉後,執行代碼輸出:能夠看到,當A執行後繼續執行了B中的name()函數。若是B中仍然有super函數則會繼續向上去查找object中是否有name()函數。繼承

(<class '__main__.C'>, <class '__main__.A'>, <class '__main__.B'>, <class 'object'>)name is wangname is xiaomingname is cat

關注公衆號:「Python專欄」,後臺回覆「騰訊架構資源1」,獲取由騰訊架構師整理的大數據學習資源包全套!!!資源

Python專欄二維碼

相關文章
相關標籤/搜索