首頁  >  文章  >  後端開發  >  Python中如何呼叫超級建構函式?

Python中如何呼叫超級建構函式?

DDD
DDD原創
2024-11-17 21:35:02601瀏覽

How Do You Invoke the Super Constructor in Python?

在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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn