摘要: class father(): def call_children(self): child_method = getattr(self, 'out') 获取子类的out()方法 child_method() 执行子类的out()方法 class children(father): def out( 阅读全文
posted @ 2020-01-21 14:12 zhouhaiwu 阅读(5459) 评论(0) 推荐(0) 编辑