__getattr__相当于方法

时间:2010-10-04 12:02:05

标签: python object methods getattr

未找到属性时调用object.__getattr__。是否存在拦截未定义方法的等效方法?

3 个答案:

答案 0 :(得分:10)

没有区别。方法也是属性。 (但是,如果你希望方法有一个隐含的“自我”参数,你将不得不做更多的工作来“绑定”该方法)。

答案 1 :(得分:8)

方法也是属性。 __getattr__对他们的工作方式相同:

class A(object):

  def __getattr__(self, attr):
    print attr

然后尝试:

>>> a = A()
>>> a.thing
thing
>>> a.thing()
thing
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not callable

答案 2 :(得分:0)

你没有退货。

class A(object):

  def __getattr__(self, attr):
    return attr

应该有效