首页 > 代码库 > Pyhon学习笔记2:Python中的类的继承

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中的类的继承