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的re模块应用实例
Sep 26 Python
python实现分析apache和nginx日志文件并输出访客ip列表的方法
Apr 04 Python
python3.6 +tkinter GUI编程 实现界面化的文本处理工具(推荐)
Dec 20 Python
PyCharm鼠标右键不显示Run unittest的解决方法
Nov 30 Python
PyCharm 配置远程python解释器和在本地修改服务器代码
Jul 23 Python
Django ORM 查询管理器源码解析
Aug 05 Python
python GUI库图形界面开发之PyQt5中QMainWindow, QWidget以及QDialog的区别和选择
Feb 26 Python
Python tcp传输代码实例解析
Mar 18 Python
基于Python制作一副扑克牌过程详解
Oct 19 Python
Python3.9.1中使用split()的处理方法(推荐)
Feb 07 Python
使用pytorch实现线性回归
Apr 11 Python
自己搭建resnet18网络并加载torchvision自带权重的操作
May 13 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
3.从实例开始
2006/10/09 PHP
UTF8编码内的繁简转换的PHP类
2009/07/09 PHP
php连接Access数据库错误及解决方法
2013/06/20 PHP
使用PHP如何实现高效安全的ftp服务器(一)
2015/12/20 PHP
购物车实现的几种方式优缺点对比
2018/05/02 PHP
Avengerls vs KG BO3 第一场2.18
2021/03/10 DOTA
JS实现侧悬浮浮动实例代码
2013/11/29 Javascript
CSS中position属性之fixed实现div居中
2015/12/14 Javascript
有关JavaScript中call()和apply() 的一些理解
2016/05/20 Javascript
Jquery对新插入的节点 绑定Click事件失效的解决方法
2016/06/02 Javascript
Vue 固定头 固定列 点击表头可排序的表格组件
2016/11/25 Javascript
JavaScript实现星级评分
2017/01/12 Javascript
js 开发之autocomplete="off"在chrom中失效的解决办法
2017/09/28 Javascript
angular5 httpclient的示例实战
2018/03/12 Javascript
JavaScript中BOM对象原理与用法分析
2019/07/09 Javascript
package.json中homepage属性的作用详解
2020/03/11 Javascript
快速了解python leveldb
2018/01/18 Python
Python 错误和异常代码详解
2018/01/29 Python
python 拷贝特定后缀名文件,并保留原始目录结构的实例
2018/04/27 Python
Python求一批字符串的最长公共前缀算法示例
2019/03/02 Python
Python获取好友地区分布及好友性别分布情况代码详解
2019/07/10 Python
python设置随机种子实例讲解
2019/09/12 Python
python3 tkinter实现添加图片和文本
2019/11/26 Python
python 模拟登陆163邮箱
2020/12/15 Python
巴西最大的体育用品商城:Netshoes巴西
2016/11/29 全球购物
请假条怎么写
2014/04/10 职场文书
企业文明单位申报材料
2014/05/16 职场文书
重阳节活动总结
2014/08/27 职场文书
银行授权委托书样本
2014/10/13 职场文书
全国法制宣传日活动总结2014
2014/11/01 职场文书
2014年物业公司工作总结
2014/11/22 职场文书
房地产置业顾问岗位职责
2015/04/11 职场文书
关于拾金不昧的感谢信(五篇)
2019/10/18 职场文书
Python Django搭建文件下载服务器的实现
2021/05/10 Python
python字典进行运算原理及实例分享
2021/08/02 Python
redis数据结构之压缩列表
2022/03/21 Redis