python中super的用法实例解析

枫铃3年前 (2021-07-10)Python256

概念

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在多重继承里面的使用:
下面是一个例子:

'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:579817333 
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
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.

相关文章

python3循环遍历嵌套字典替换指定值

python3循环遍历嵌套字典替换指定值

目标:循环遍历多层嵌套的字典,找到指定的值,并将对应键的值替换成想要的值,最后输出替换后的字典。 &...

python去掉txt文件行尾换行

python去掉txt文件行尾换行

误区 使用python...

Python 中的序列类型支持哪些公共操作

一、序列类型支持哪些公共...

Python合并两个List

1.使用list的ext...

python递归方式和普通方式实现输出和查询斐波那契数列

斐波那契数列 斐波那契数列(Fibonacci sequence),是从1,1开始,后面每一项等于前...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。