Python class的继承方法代码实例


Posted in Python onFebruary 14, 2020

这篇文章主要介绍了Python class的继承方法代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

class parent(object):
   
  def implicit(self):
    print("Parent implicit()")
  def override(self):
    print("Parent override()")
  def altered(self):
    print("Parent altered()")
     
class child(parent):
   
  def override(self):
    print("Child override()")
  def altered(self):
    print("Child,Before Parent altered()")
    super(child,self).altered()
    print("Child,After Parent altered()")
     
dad=parent()
son=child()
 
dad.implicit()
son.implicit()
 
dad.override()
son.override()
 
dad.altered()
son.altered()

运行结果:

Parent implicit()
Parent implicit()
Parent override()
Child override()
Parent altered()
Child,Before Parent altered()
Parent altered()
Child,After Parent altered()

还可以写成:

class parent():
   
  def implicit(self):
    print("Parent implicit()")
  def override(self):
    print("Parent override()")
  def altered(self):
    print("Parent altered()")
     
class child(parent):
   
  def __init__(self):
    self.parent =parent()
     
  def implicit(self):
    self.parent.implicit()
     
  def override(self):
    print("Child override()")
     
  def altered(self):
    print("Child,Before Parent altered()")
    super(child,self).altered()
    print("Child,After Parent altered()")
     
dad=parent()
son=child()
 
dad.implicit()
son.implicit()
 
dad.override()
son.override()
 
dad.altered()
son.altered()

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

Python 相关文章推荐
python 多进程通信模块的简单实现
Feb 20 Python
Python下使用Psyco模块优化运行速度
Apr 05 Python
python 字典中取值的两种方法小结
Aug 02 Python
python实现简单的单变量线性回归方法
Nov 08 Python
python 实现selenium断言和验证的方法
Feb 13 Python
django项目用higcharts统计最近七天文章点击量
Aug 17 Python
python实现画出e指数函数的图像
Nov 21 Python
Django choices下拉列表绑定实例
Mar 13 Python
Python PIL库图片灰化处理
Apr 07 Python
python获取整个网页源码的方法
Aug 03 Python
pytorch MSELoss计算平均的实现方法
May 12 Python
解决Pytorch修改预训练模型时遇到key不匹配的情况
Jun 05 Python
python super函数使用方法详解
Feb 14 #Python
python字符串,元组,列表,字典互转代码实例详解
Feb 14 #Python
python集成开发环境配置(pycharm)
Feb 14 #Python
基于python-pptx库中文文档及使用详解
Feb 14 #Python
python pptx复制指定页的ppt教程
Feb 14 #Python
打包PyQt5应用时的注意事项
Feb 14 #Python
如何使用Python抓取网页tag操作
Feb 14 #Python
You might like
用php实现的下载css文件中的图片的代码
2010/02/08 PHP
在Windows下编译适用于PHP 5.2.12及5.2.13的eAccelerator.dll(附下载)
2010/05/04 PHP
php GeoIP的使用教程
2011/03/09 PHP
javascript得到XML某节点的子节点个数的脚本
2008/10/11 Javascript
javascript 获取函数形参个数
2014/07/31 Javascript
javascript中对变量类型的判断方法
2015/08/09 Javascript
javascript常用经典算法实例详解
2015/11/25 Javascript
JavaScript继承模式粗探
2016/01/12 Javascript
一篇文章掌握RequireJS常用知识
2016/01/26 Javascript
Highcharts入门之基本属性
2016/08/02 Javascript
微信小程序 后台登录(非微信账号)实例详解
2017/03/31 Javascript
浅谈ES6 模板字符串的具体使用方法
2017/11/07 Javascript
nodejs判断文件、文件夹是否存在及删除的方法
2017/11/10 NodeJs
如何使用Node.js爬取任意网页资源并输出PDF文件到本地
2019/06/17 Javascript
关于layui flow loading占位图的实现方法
2019/09/21 Javascript
python中enumerate函数遍历元素用法分析
2016/03/11 Python
python 截取 取出一部分的字符串方法
2017/03/01 Python
python学习开发mock接口
2019/04/28 Python
django框架model orM使用字典作为参数,保存数据的方法分析
2019/06/24 Python
python+Django+pycharm+mysql 搭建首个web项目详解
2019/11/29 Python
用 Python 制作地球仪的方法
2020/04/24 Python
让Django的BooleanField支持字符串形式的输入方式
2020/05/20 Python
Pytorch mask-rcnn 实现细节分享
2020/06/24 Python
opencv 图像礼帽和图像黑帽的实现
2020/07/07 Python
超酷炫 CSS3垂直手风琴菜单
2016/06/28 HTML / CSS
幼儿教师个人求职信范文
2013/09/21 职场文书
运动会通讯稿50字
2014/01/30 职场文书
完美主义个人的自我评价
2014/02/17 职场文书
学校门卫岗位职责范本
2014/06/30 职场文书
商场消防安全责任书
2014/07/29 职场文书
安全在我心中演讲稿
2014/09/01 职场文书
违反纪律检讨书范文
2015/05/07 职场文书
离职信范本
2015/06/23 职场文书
会议承办单位欢迎词
2015/09/30 职场文书
javascript之Object.assign()的痛点分析
2022/03/03 Javascript
Spring boot实现上传文件到本地服务器
2022/08/14 Java/Android