Python实例 类和继承

class Base:
    def __init__(self):
        self.data = []
    def add(self, x):
        self.data.append(x)
    def addtwice(self, x):
        self.add(x)
        self.add(x)

# Child extends Base
class Child(Base):
    def plus(self,a,b):
        return a+b

oChild =Child()
oChild.add("str1")
print (oChild.data)
print (oChild.plus(2,3))

'''
知识点:

    * self:类似Java的this参数
    
'''

posted @ 2019-07-25 14:05  樊伟胜  阅读(222)  评论(0编辑  收藏  举报