python super用法及原理详解


Posted in Python onJanuary 20, 2020

这篇文章主要介绍了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.

参考文档

https://www.programiz.com/python-programming/methods/built-in/super

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python3通过Luhn算法快速验证信用卡卡号的方法
May 14 Python
PyQt 线程类 QThread使用详解
Jul 16 Python
python实现word 2007文档转换为pdf文件
Mar 15 Python
Python 实现字符串中指定位置插入一个字符
May 02 Python
python中字符串的操作方法大全
Jun 03 Python
Python配置虚拟环境图文步骤
May 20 Python
Python GUI学习之登录系统界面篇
Aug 21 Python
双向RNN:bidirectional_dynamic_rnn()函数的使用详解
Jan 20 Python
python文件和文件夹复制函数
Feb 07 Python
Python统计文本词汇出现次数的实例代码
Feb 27 Python
基于Tensorflow一维卷积用法详解
May 22 Python
浅析Python 简单工厂模式和工厂方法模式的优缺点
Jul 13 Python
tensorflow 变长序列存储实例
Jan 20 #Python
在tensorflow中实现去除不足一个batch的数据
Jan 20 #Python
Tensorflow实现在训练好的模型上进行测试
Jan 20 #Python
Python线程条件变量Condition原理解析
Jan 20 #Python
tensorflow tf.train.batch之数据批量读取方式
Jan 20 #Python
Python list运算操作代码实例解析
Jan 20 #Python
Python模块future用法原理详解
Jan 20 #Python
You might like
zf框架的db类select查询器join链表使用示例(zend框架)
2014/03/14 PHP
PHP+MySQL修改记录的方法
2015/01/21 PHP
php基于闭包实现函数的自调用(递归)实例分析
2016/11/11 PHP
php使用函数pathinfo()、parse_url()和basename()解析URL
2016/11/25 PHP
Laravel如何友好的修改.env配置文件详解
2017/06/07 PHP
jQuery+PHP实现图片上传并提交功能
2020/07/27 PHP
COM中获取JavaScript数组大小的代码
2009/11/22 Javascript
在新窗口打开超链接的方法小结
2013/04/14 Javascript
javascript制作的滑动图片菜单
2015/05/15 Javascript
JS清除字符串中重复值的实现方法
2016/08/03 Javascript
详解堆的javascript实现方法
2016/11/29 Javascript
原生js实现放大镜
2017/02/20 Javascript
bootstrap选项卡扩展功能详解
2017/06/14 Javascript
面包屑导航详解
2017/12/07 Javascript
Vue2.X 通过AJAX动态更新数据
2018/07/17 Javascript
微信小程序制作表格的方法
2019/02/14 Javascript
vue-resourc发起异步请求的方法
2020/02/11 Javascript
es6函数name属性功能与用法实例分析
2020/04/18 Javascript
微信小程序动态评分展示/五角星展示/半颗星展示/自定义长度展示功能的实现
2020/07/22 Javascript
忘记ftp密码使用python ftplib库暴力破解密码的方法示例
2014/01/22 Python
python使用循环实现批量创建文件夹示例
2014/03/25 Python
Python def函数的定义、使用及参数传递实现代码
2014/08/10 Python
Python基础教程之浅拷贝和深拷贝实例详解
2017/07/15 Python
pandas实现选取特定索引的行
2018/04/20 Python
解决python 未发现数据源名称并且未指定默认驱动程序的问题
2018/12/07 Python
Python实现网页截图(PyQT5)过程解析
2019/08/12 Python
Python+OpenCV实现图像的全景拼接
2020/03/05 Python
Python爬虫入门有哪些基础知识点
2020/06/02 Python
Python matplotlib 绘制双Y轴曲线图的示例代码
2020/06/12 Python
Django自带用户认证系统使用方法解析
2020/11/12 Python
Django与AJAX实现网页动态数据显示的示例代码
2021/02/24 Python
C#实现对任一张表的数据进行增,删,改,查要求,运用Webservice,体现出三层架构
2014/07/11 面试题
平面设计专业求职信
2014/08/09 职场文书
2014旅游局领导班子四风问题对照检查材料思想汇报
2014/09/19 职场文书
学校四风问题对照检查材料思想汇报
2014/09/26 职场文书
贷款工作证明模板
2015/06/12 职场文书