私は次のようなクラス構造を持っています:
class A(object):
array = [1]
def __init__(self):
pass
class B(A):
array = [2, 3]
def __init__(self):
super(B, self).__init__()
class C(B):
array = [4]
def __init__(self):
super(C, self).__init__()
print array
そして私がするとき:
c = C()
すべてのフィールドを継承順に結合したい。[1, 2, 3, 4] を出力します。どうやってやるの?