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

溫馨提示×

溫馨提示×

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

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

如何在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

井研县| 会昌县| 大庆市| 凉城县| 交城县| 诏安县| 灵武市| 安溪县| 枣庄市| 确山县| 枣阳市| 岳阳市| 诏安县| 洪洞县| 安塞县| 夏邑县| 蕲春县| 北京市| 长丰县| 河北省| 壤塘县| 五大连池市| 宽甸| 温州市| 道孚县| 辛集市| 烟台市| 青神县| 元江| 泰宁县| 大冶市| 赫章县| 靖边县| 临潭县| 海原县| 恭城| 武安市| 柳林县| 横山县| 宝兴县| 滕州市|