我提出這是使用類Python程序,我想一個類僅選擇從另一個e.g繼承:選擇性繼承的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
我怎麼能做到這一點而不進行其他類?
能否請您給,爲什麼你希望它是這樣一點點更多信息?考慮到這些事實,作爲一個設計決策,我似乎有點奇怪。 – StoryTeller