亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何在python中使用super方法

發布時間:2021-03-31 17:19:23 來源:億速云 閱讀:155 作者:Leah 欄目:開發技術

如何在python中使用super方法?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

概念

super作為python的內建函數。主要作用如下:

  • 允許我們避免使用基類

  • 跟隨多重繼承來使用

實例

在單個繼承的場景下,一般使用super來調用基類來實現:
下面是一個例子:

class Mammal(object):
 def __init__(self, mammalName):
  print(mammalName, 'is a warm-blooded animal.')
  
class Dog(Mammal):
 def __init__(self):
  print('Dog has four legs.')
  super().__init__('Dog')
  
d1 = Dog()

輸出結果:

? super git:(master) ? py super_script.py

Dog has four legs.

Dog is a warm-blooded animal.

super在多重繼承里面的使用:

下面是一個例子:

class Animal:
 def __init__(self, animalName):
  print(animalName, 'is an animal.');
class Mammal(Animal):
 def __init__(self, mammalName):
  print(mammalName, 'is a warm-blooded animal.')
  super().__init__(mammalName)

class NonWingedMammal(Mammal):
 def __init__(self, NonWingedMammalName):
  print(NonWingedMammalName, "can't fly.")
  super().__init__(NonWingedMammalName)
class NonMarineMammal(Mammal):
 def __init__(self, NonMarineMammalName):
  print(NonMarineMammalName, "can't swim.")
  super().__init__(NonMarineMammalName)
class Dog(NonMarineMammal, NonWingedMammal):
 def __init__(self):
  print('Dog has 4 legs.');
  super().__init__('Dog')

d = Dog()
print('')
bat = NonMarineMammal('Bat')

輸出結果:

? super git:(master) ? py super_muli.py
Dog has 4 legs.
Dog can't swim.
Dog can't fly.
Dog is a warm-blooded animal.
Dog is an animal.

Bat can't swim.
Bat is a warm-blooded animal.
Bat is an animal.

關于如何在python中使用super方法問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

宣威市| 财经| 仁布县| 德化县| 钟祥市| 稷山县| 柘荣县| 女性| 普兰县| 沂南县| 武威市| 布尔津县| 昌吉市| 抚远县| 高台县| 石景山区| 聊城市| 彭山县| 铜梁县| 铜川市| 玛沁县| 二手房| 鄯善县| 清涧县| 佛坪县| 西和县| 新竹市| 万山特区| 濮阳市| 保靖县| 沙洋县| 通榆县| 孟津县| 冀州市| 申扎县| 东至县| 张家口市| 咸宁市| 岐山县| 砚山县| 瑞昌市|