在 Python 中呼叫超級建構子
與其他程式語言不同,Python 不會隱含地呼叫超級建構子。這就提出瞭如何在 Python 中明確呼叫超級構造函數的問題。
Python 3
要在Python 3 中呼叫超級建構函數,只要使用super()子類別建構子中的.__init__() 語法:
class A(object): def __init__(self): print("world") class B(A): def __init__(self): print("hello") super().__init__()
Python 2
在Python 2 中,需要稍微更詳細的語法:
class A(object): def __init__(self): print "world" class B(A): def __init__(self): print "hello" super(B, self).__init__()
這個super(B, self) 語法相當於Python 3 中的super()。請記住包含物件基底類別以明確指定您的類別是舊式類別。
以上是如何呼叫Python中的超級建構子?的詳細內容。更多資訊請關注PHP中文網其他相關文章!