溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中super().__init__()怎么用

發(fā)布時間:2020-12-08 09:14:33 來源:億速云 閱讀:187 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)python中super().__init__()怎么用的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

子類構(gòu)造函數(shù)調(diào)用super().
子類構(gòu)造函數(shù)調(diào)用super().init()的時候,會從父類繼承屬性。

三種構(gòu)造函數(shù)的區(qū)別:

當子類不做初始化的時候,會自動繼承父類的屬性;
當子類做初始化(子類中包含新的屬性)的時候,子類不會自動繼承父類的屬性;
當子類做初始化(子類中包含新的屬性)的時候,如果子類調(diào)用super初始化了父類的構(gòu)造函數(shù),那么子類會繼承父類的屬性。

class father:
    def __init__(self, father_attribute="father"):
        self.father_attribute=father_attribute

class child_without_ini(father):
    pass

class child_with_ini(father):
    def __init__(self, child_attribute):
        self.child_attribute=child_attribute

class child_with_super(father):
    def __init__(self,father_attribute,super_attribute):
        self.super_attribute=super_attribute
        super().__init__(father_attribute)

test_class_without_ini=child_without_ini()
test_class_with_ini=child_with_ini('child')
test_class_with_super=child_with_super('new_father','super')


測試:

print(test_class_without_ini.father_attribute)
輸出:
father

print(test_class_with_ini.father_attribute)
輸出:
AttributeError: 'child_with_ini' object has no attribute 'father_attribute'

print(test_class_with_super.father_attribute)
輸出:
new_father

另一種使用方法:
super(class,self).init()

其中class是子類,這段代碼的含義是首先找到class的父類,然后將class類的對象轉(zhuǎn)化為父類的對象,讓后讓這個“被轉(zhuǎn)化”的對象調(diào)用自己的__init__()函數(shù)。

class child_with_super(father):
    def __init__(self,father_attribute,super_attribute):
        super(child_with_super, self).__init__(father_attribute)
        self.super_attribute=super_attribute

感謝各位的閱讀!關(guān)于python中super().__init__()怎么用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI