以下に示すように親クラスと子クラスを作成すると、親クラスからの引数が子クラスによって自動的に取り込まれないのはなぜですか?
明示的な方が良いことは理解していますが、このコードはどのような状況であるのだろうか...
class testParent(object):
def __init__(self,testParentParam1,testParentParam2):
pass
class testChild(testParent):
def __init__(self,testParentParam1,testParentParam2,testChildParam1,testChildParam2):
pass
このコードよりも優れています...
class testParent(object):
def __init__(self,testParentParam1,testParentParam2):
pass
class testChild(testParent):
def __init__(self,testChildParam1,testChildParam2):
pass