考虑以下代码示例(python 2.7):
class Parent:
def __init__(self, child):
self.child = child
def __getattr__(self, attr):
print("Calling __getattr__: "+attr)
if hasattr(self.child, attr):
return getattr(self.child, attr)
else:
raise AttributeError(attr)
class Child:
def make_statement(self, age=10):
print("I am an instance of Child with age "+str(age))
kid = Child()
person = Parent(kid)
kid.make_statement(5)
person.make_statement(20)
可以显示,函数调用person.make_statement(20)
通过Child.make_statement
的{{1}}函数调用Parent
函数。在__getattr__
函数中,我可以在调用子实例中的相应函数之前打印出该属性。到目前为止这么清楚。
但是电话__getattr__
的论点是如何通过person.make_statement(20)
传递的?如何在__getattr__
函数中打印出数字'20'?
答案 0 :(得分:20)
您没有在20
功能中打印__getattr__
。该函数在Child实例上找到make_statement
属性并返回该属性。碰巧,该属性是一个方法,因此它是可调用的。 Python因此调用返回的方法,然后 方法打印20
。
如果您要删除()
电话,它仍可以使用;我们可以存储方法并单独调用它来打印20
:
>>> person.make_statement
Calling __getattr__: make_statement
<bound method Child.make_statement of <__main__.Child instance at 0x10db5ed88>>
>>> ms = person.make_statement
Calling __getattr__: make_statement
>>> ms()
I am an instance of Child with age 10
如果有来查看参数,则必须返回一个包装函数:
def __getattr__(self, attr):
print("Calling __getattr__: "+attr)
if hasattr(self.child, attr):
def wrapper(*args, **kw):
print('called with %r and %r' % (args, kw))
return getattr(self.child, attr)(*args, **kw)
return wrapper
raise AttributeError(attr)
现在导致:
>>> person.make_statement(20)
Calling __getattr__: make_statement
called with (20,) and {}
I am an instance of Child with age 20