调用自身类方法和父类方法
【摘要】
这篇很基础,主要是记录2个关于调用父类和子类的点:
C++和Java中调用自身类是用this,如果调用自身类的方法则用this.xxx_function,而python中调用自身类的方法是用self.x...
这篇很基础,主要是记录2个关于调用父类和子类的点:
- C++和Java中调用自身类是用
this
,如果调用自身类的方法则用this.xxx_function
,而python中调用自身类的方法是用self.xxx_function
; - Java和python调用父类的方法可以直接用
super
,但是C++没有super
; - 在C++中,子类和父类函数名一样的函数fun,如果参数不一样,不管加不加
virtual
,当子类调用fun()时,会先在子类中找,找不到会报错。
下面给个python例子:
# !/usr/bin/python
# -*- coding: utf-8 -*-
class FooParent:
def __init__(self):
self.parent = 'I\'m the parent.'
self.toy = "parent_funny_toy"
print ('Parent')
def bar(self,message):
print ("%s from Parent bar function" % message)
class FooChild(FooParent):
def __init__(self):
# super(FooChild,self) 首先找到 FooChild 的父类(就是类 FooParent),然后把类 FooChild 的对象转换为类 FooParent 的对象
# super(FooChild,self).__init__()
super().__init__()
self.toy = "child_funny_toy"
print ('Child')
def bar(self,message):
print("%s from child bar function" % message)
def bar_test(self, message):
# 第一种:使用super调用父类方法
print('parent bar fuction:') # super(FooChild, self).bar(message)
super().bar(message)
# 第二种:使用self调用自身方法
print('child bar fuction:')
print(self.bar(message))
# 第三种(错误):使用this调用自身方法(java才是)
# this.bar(message)
if __name__ == '__main__':
fooChild = FooChild()
fooChild.bar_test("abc")
# Parent
# Child
# parent bar fuction:
# abc from Parent bar function
# parent bar fuction:
# abc from child bar function
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
文章来源: andyguo.blog.csdn.net,作者:山顶夕景,版权归原作者所有,如需转载,请联系作者。
原文链接:andyguo.blog.csdn.net/article/details/126653056
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)