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

如何呼叫Python中的超級建構子?

DDD
DDD原創
2024-11-17 17:21:02130瀏覽

How to Invoke the Super Constructor in Python?

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

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