91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

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

這篇文章給大家分享的是有關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__()怎么用就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

大城县| 淮北市| 盐边县| 沁水县| 上虞市| 乌兰察布市| 滦南县| 曲沃县| 安达市| 边坝县| 祁门县| 泗水县| 定兴县| 安徽省| 苗栗市| 海晏县| 曲周县| 蕲春县| 和硕县| 丹凤县| 克东县| 昌乐县| 桓台县| 大足县| 深州市| 舒兰市| 济南市| 天全县| 苗栗县| 正安县| 清新县| 大埔县| 清丰县| 四川省| 和龙市| 棋牌| 富顺县| 樟树市| 隆化县| 宜川县| 云梦县|