日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python super() 函数的用法及实例

發布時間:2025/3/15 python 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python super() 函数的用法及实例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

描述

super()?函數是用于調用父類(超類)的一個方法。

super 是用來解決多重繼承問題的,直接用類名調用父類方法在使用單繼承的時候沒問題,但是如果使用多繼承,會涉及到查找順序(MRO)、重復調用(鉆石繼承)等種種問題。

MRO 就是類的方法解析順序表, 其實也就是繼承父類方法時的順序表。

語法

以下是 super() 方法的語法:

super(type[, object-or-type])

參數

  • type -- 類。
  • object-or-type -- 類,一般是 self

Python3.x 和 Python2.x 的一個區別是: Python 3 可以使用直接使用?super().xxx?代替?super(Class, self).xxx?:

Python3.x 實例:

Python3.x 實例:

class A:def add(self, x):y = x+1print(y) class B(A):def add(self, x):super().add(x) b = B() b.add(2) # 3

Python2.x 實例:

#!/usr/bin/python # -*- coding: UTF-8 -*-class A(object): # Python2.x 記得繼承 objectdef add(self, x):y = x+1print(y) class B(A):def add(self, x):super(B, self).add(x) b = B() b.add(2) # 3

返回值

無。

實例

以下展示了使用 super 函數的實例:

#!/usr/bin/python # -*- coding: UTF-8 -*-class FooParent(object):def __init__(self):self.parent = 'I\'m the parent.'print ('Parent')def bar(self,message):print ("%s from Parent" % message)class FooChild(FooParent):def __init__(self):# super(FooChild,self) 首先找到 FooChild 的父類(就是類 FooParent),然后把類 FooChild 的對象轉換為類 FooParent 的對象super(FooChild,self).__init__() print ('Child')def bar(self,message):super(FooChild, self).bar(message)print ('Child bar fuction')print (self.parent)if __name__ == '__main__':fooChild = FooChild()fooChild.bar('HelloWorld')

執行結果:

Parent Child HelloWorld from Parent Child bar fuction I'm the parent.

?

總結

以上是生活随笔為你收集整理的Python super() 函数的用法及实例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。