时间:2021-05-22
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函数方法以上就是python super()函数的基本使用的详细内容,更多关于python super()函数的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、super函数简介python内置函数super()主要用于类的多继承中,用来查找并调用父类的方法,所以在单重继承中用不用super都没关系;但是,使用su
super()函数可以用于继承父类的方法,语法如下:super(type[,object-or-type])虽然super()函数的使用比较简单,但是需要根据单
本文实例讲述了Python中super函数用法。分享给大家供大家参考,具体如下:这是个高大上的函数,在python装13手册里面介绍过多使用可显得自己是高手23
Javasuper和this的对比及使用super和this的异同1)super(参数列表):调用父类中的某一个构造函数(应该为构造函数中的第一条语句)this
python使用super()出现错误解决办法当我们在python的子类中调用父类的方法时,会用到super(),不过我遇到了一个问题,顺便记录一下。比如,我写