Pyhon学习笔记2:Python中的类的继承
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pyhon学习笔记2:Python中的类的继承相关的知识,希望对你有一定的参考价值。
代码: class A(): def add(self,a,b): return a+b class B(A): def sub(self,a,b): return a-b print(B().add(4,5))
结果:
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32 Type "copyright", "credits" or "license()" for more information. >>> ======================= RESTART: D:/selenium/test/5.py ======================= 9 >>>
分析:父类A中存在方法:add()
子类B通过 B(A)继承父类A
因此可以直接使用A父类中的add方法
以上是关于Pyhon学习笔记2:Python中的类的继承的主要内容,如果未能解决你的问题,请参考以下文章