python3面向对象注意事项
摘要:
class parent(object): def __init__(self): self.test() def test(self): print('parent ') class BaseHandler(object): def test(self): print('BASEhandler') 阅读全文
posted @ 2018-12-30 12:41 it_man_xiangge 阅读(319) 评论(0) 推荐(0) 编辑