中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

繁峙县| 永春县| 荆州市| 内丘县| 准格尔旗| 疏附县| 工布江达县| 托克逊县| 永靖县| 娄底市| 朝阳县| 黄龙县| 穆棱市| 丹巴县| 桃园县| 信丰县| 石渠县| 连南| 南召县| 六枝特区| 武清区| 肇州县| 仪陇县| 丹寨县| 淳化县| 堆龙德庆县| 石柱| 昌江| 西畴县| 牡丹江市| 湘潭市| 灵璧县| 巴林右旗| 阿尔山市| 洛隆县| 衡东县| 宣武区| 墨玉县| 江安县| 南投县| 浦江县|