您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python中super().__init__()怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
子類構造函數調用super().
子類構造函數調用super().init()的時候,會從父類繼承屬性。
三種構造函數的區別:
當子類不做初始化的時候,會自動繼承父類的屬性;
當子類做初始化(子類中包含新的屬性)的時候,子類不會自動繼承父類的屬性;
當子類做初始化(子類中包含新的屬性)的時候,如果子類調用super初始化了父類的構造函數,那么子類會繼承父類的屬性。
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類的對象轉化為父類的對象,讓后讓這個“被轉化”的對象調用自己的__init__()函數。
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
感謝各位的閱讀!關于python中super().__init__()怎么用就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。