例如,我有两个课程:
class Parent(object):
def hello(self):
print 'Hello world'
def goodbye(self):
print 'Goodbye world'
class Child(Parent):
pass
类 Child 必须仅从 Parent 继承 hello() 方法,并且不应提及 goodbye()。可能吗 ?
ps 是的,我读过这个
重要说明:我只能修改子类(在所有可能的父类中都应该保持原样)