摘要: 钻石继承(菱形继承)问题 class A(object): def m(self): print("m of A called") class B(A): def m(self): print("m of B called") class C(A): def m(self): print("m of 阅读全文
posted @ 2020-06-08 08:53 梅谷暴君 阅读(484) 评论(0) 推荐(0) 编辑