摘要: 一.继承顺序 1 继承顺序 class A(object): def test(self): print('from A') class B(A): def test(self): print('from B') class C(A): def test(self): print('from C') 阅读全文
posted @ 2017-04-20 17:32 samyoung 阅读(166) 评论(0) 推荐(0) 编辑