69 - Python类是否支持多继承,请举例说明
【摘要】 Python是否支持多继承,请举例说明
Python支持多继承
class Calculator: def calculator(self, expression): self.value = eval(expression) return self.value def printResult(self): print('result: {}'.format(sel...
Python是否支持多继承,请举例说明
- Python支持多继承
class Calculator: def calculator(self, expression): self.value = eval(expression) return self.value def printResult(self): print('result: {}'.format(self.value)) class MyPrint: def print(self, msg): print('msg: ', msg) def printResult(self): print('结果: {}'.format(self.value)) class MyCalculator1(Calculator, MyPrint): pass
class MyCalculator2(MyPrint, Calculator): pass
my1 = MyCalculator1()
print(my1.calculator('8 + 2 * 6'))
my1.print('hello')
my2 = MyCalculator2()
print(my2.calculator('1 + 1 * 1'))
my1.print('world')
- 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
20
msg: hello
2
msg: world
- 1
- 2
- 3
- 4
如果Python类的多个父类存在相同的成员,按着什么规则处理
- 如果多个分类存在冲突的成员,会使用最先遇到的成员
my1.printResult()
my2.printResult()
- 1
- 2
- 3
result: 20
结果: 2
- 1
- 2
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104885938
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)