1
私は2つのクラスがあります:私はChild
インスタンスにprint_method
を呼び出し、another_method
を見ることを期待して今親のself .__ dict__ dictに子属性はありませんか?
class Base(object):
def __init__(self):
object.__init__(self)
def print_methods(self):
print self.__dict__
class Child(Base):
def __init__(self):
Base.__init__(self)
def another_method(self):
pass
をすることができます。しかし、失敗した。
どうしたのですか? – Alanmars