时间:2021-05-22
这篇文章主要介绍了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()以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Python面向对象类编写技术细节。分享给大家供大家参考,具体如下:类代码编写细节继续学习类、方法和继承。class语句以下是class语句的一般
本文实例讲述了python继承和抽象类的实现方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:#!/usr/local/bin/python#Fi
1.单继承父类也叫基类子类也叫派生类如下所示,继承的关系:继承的书写格式:class子类(父类):方法实例:classAnimal:defeat(self):p
本文实例讲述了Python可跨平台实现获取按键的方法。分享给大家供大家参考。具体如下:复制代码代码如下:class_Getch:"""Getsasinglech
这篇文章主要介绍了python类的继承实例方法.静态方法.类方法的代码解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋