在Python中呼叫超級建構子
問題中提到「其他語言」顯示詢問者熟悉面向對象( OO)用其他對象語言編程,通常情況是隱式呼叫基底(超)類別建構子。 Python 中也是如此,雖然有明確呼叫超類別建構函式的方法。
為了滿足查詢者的期望,Python 3 簡化了呼叫超類別建構子的過程。以下範例提供了在Python 3 中工作的明確示範:
class A(object): def __init__(self): print("world") class B(A): def __init__(self): print("hello") super().__init__()
在Python 2 中,呼叫超類別建構函式需要稍微更詳細的形式:
class A(object): def __init__(self): print "world" class B(A): def __init__(self): print "hello" super(B, self).__init__()
兩個範例都輸出" hello」後面跟著“world”,示範了超類別建構函式的正確呼叫。
以上是Python中如何呼叫超級建構函式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!