程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

On the order of multiple inheritance in Python

編輯:Python

I would like to ask why we inherit the left and the right ?

class A: def __init__(self): super().__init__() print("A")class B: def __init__(self): super().__init__() print("B")class C(A, B): def __init__(self): super().__init__() print("C")c = C() # The order is BAC

class A: def __init__(self): print('A')class B(A): def __init__(self): print('B') super().__init__()class C(A): def __init__(self): print('C') super().__init__()class D(A): def __init__(self): print('D') super().__init__()class E(B, C): def __init__(self): print('E') super().__init__()class F(C, D): def __init__(self): print('F') super().__init__()class G(E, F): def __init__(self): print('G') super().__init__()g = G() # The order is GEBFCDA

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved