我正在制作一个使用类的python程序,我希望一个类只能选择性地从另一个类继承,例如:
class X(object):
def __init__(self):
self.hello = 'hello'
class Y(object):
def __init__(self):
self.moo = 'moo'
class Z():
def __init__(self, mode):
if mode == 'Y':
# Class will now Inherit from Y
elif mode == 'X':
# Class will now Inherit for X
我怎么能做到这一点而不上另一堂课?