python super()函数的基本使用
作者:新码农 时间:2022-01-11 05:24:40
super主要来调用父类方法来显示调用父类,在子类中,一般会定义与父类相同的属性(数据属性,方法),从而来实现子类特有的行为。也就是说,子类会继承父类的所有的属性和方法,子类也可以覆盖父类同名的属性和方法。
class Parent(object):
Value = "Hi, Parent value"
def fun(self):
print("This is from Parent")
# 定义子类,继承父类
class Child(Parent):
Value = "Hi, Child value"
def ffun(self):
print("This is from Child")
c = Child()
c.fun()
c.ffun()
print(Child.Value)
# 输出结果
# This is from Parent
# This is from Child
# Hi, Child value
但是,有时候可能需要在子类中访问父类的一些属性,可以通过父类名直接访问父类的属性,当调用父类的方法是,需要将”self”显示的传递进去的方式。
class Parent(object):
Value = "Hi, Parent value"
def fun(self):
print("This is from Parent")
class Child(Parent):
Value = "Hi, Child value"
def fun(self):
print("This is from Child")
# 调用父类Parent的fun函数方法
Parent.fun(self)
c = Child()
c.fun()
# 输出结果
# This is from Child
# This is from Parent
# 实例化子类Child的fun函数时,首先会打印上条的语句,再次调用父类的fun函数方法
这种方式有一个不好的地方就是,需要经父类名硬编码到子类中,为了解决这个问题,可以使用Python中的super关键字。
class Parent(object):
Value = "Hi, Parent value"
def fun(self):
print("This is from Parent")
class Child(Parent):
Value = "Hi, Child value"
def fun(self):
print("This is from Child")
# Parent.fun(self)
# 相当于用super的方法与上一调用父类的语句置换
super(Child, self).fun()
c = Child()
c.fun()
# 输出结果
# This is from Child
# This is from Parent
# 实例化子类Child的fun函数时,首先会打印上条的语句,再次调用父类的fun函数方法
来源:https://www.addcoder.com/blog/article_detail/grzc0p7w/
标签:python,super(),函数
0
投稿
猜你喜欢
SQL查询效率:100w数据查询只需要1秒钟
2008-12-09 14:36:00
HTML5本地存储初探(一)
2010-03-07 15:42:00
轻松掌握 SQL Server 2000数据库的构架
2009-02-05 15:50:00
使用 OpenAI API 和 Python 使用 GPT-3的操作方法
2023-10-23 20:04:05
python实现二维插值的三维显示
2022-05-28 14:17:58
PHP实现异步定时多任务消息推送
2023-05-25 09:51:29
关于H1的用法探讨
2008-03-18 12:55:00
Python实现将图像转换为ASCII字符图
2022-07-15 06:05:20
mysql中general_log日志知识点介绍
2024-01-12 23:49:58
GPU版本安装Pytorch的最新方法步骤
2022-02-09 16:31:28
python 多线程实现多任务的方法示例
2021-04-12 08:36:05
Vue 实现穿梭框功能的详细代码
2024-05-09 10:51:53
Appium+Python自动化测试之运行App程序示例
2023-07-29 01:54:20
Python XML RPC服务器端和客户端实例
2022-07-26 05:41:57
详解Python中sorted()和sort()的使用与区别
2022-05-06 17:39:09
Python机器学习NLP自然语言处理基本操作词向量模型
2022-01-16 10:33:42
ASP.NET中使用SQL存储过程的方法
2007-08-24 09:31:00
scrapy头部修改的方法详解
2023-09-13 05:58:10
详解python配置虚拟环境
2021-08-02 22:02:50
12个Pandas/NumPy中的加速函数使用总结
2022-10-27 13:52:25