创新互联Python教程:Pythonsuper()

内置函数super()有助于 python 中的继承。该函数返回一个表示父类的对象,并允许访问父类的方法和属性。

创新互联建站服务项目包括三门网站建设、三门网站制作、三门网页制作以及三门网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,三门网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到三门省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!

 **super()** 

超级()参数:

它不需要任何参数。这个方法可以处理多个继承,并且它避免了显式使用基类名称。

超级()返回值

此方法不返回任何内容。在 python 中,方法解析顺序(MRO)概述了方法的继承顺序。派生调用中的方法总是在基类的方法之前调用。

Python 中super()方法的示例

示例 1:单继承的super()在 python 中是如何工作的

 class Mammals(object):
  def __init__(self, mammalName):
    print(mammalName, 'is a pet animal.')

class Cat(Mammals):
  def __init__Cat has four legs.')
    super().__init__('Cat')

c = Cat() 

输出:

Cat is a pet animal.

示例 2:如何在 python 中使用多重继承的super()

 class Animals:
  def __init__(self, Animals):
    print(Animals, 'is an animal.');

class Mammals(Animals):
  def __init__(self, mammalName):
    print(mammalName, 'is a pet animal.')
    super().__init__(mammalName)

class NonWingedMammal(Mammals):
  def __init__(self, NonWingedMammal):
    print(NonWingedMammal, "can't fly.")
    super().__init__(NonWingedMammal)

class NonMarineMammal(Mammals):
  def __init__(self, NonMarineMammal):
    print(NonMarineMammal, "can't swim.")
    super().__init__(NonMarineMammal)

class Cat(NonMarineMammal, NonWingedMammal):
  def __init__(self):
    print('Cat has 4 legs.');
    super().__init__('Cat')

c = Cat()
print('')
bat = NonMarineMammal('Bat') 

输出:

Cat has 4 legs.
Cat can't swim.
Cat can't fly.
Cat is a pet animal.
Cat is an animal.

Bat can't swim.
Bat is a pet animal.
Bat is an animal. 

分享题目:创新互联Python教程:Pythonsuper()
文章源于:http://www.mswzjz.com/qtweb/news4/200954.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联