0

我知道getattr()你可以调用该方法,但是我需要覆盖它,所以myInstance.mymethod会被覆盖。

我将方法的名称作为字符串和实例的引用。

4

1 回答 1

1

你可以用setattr

>>> class Foo(object):
...    def method(self): pass
... 
>>> a = Foo()
>>> a.method()
>>> setattr(a,'method',1)
>>> a.method()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not callable

用另一种方法替换:

>>> import types
>>> setattr(a,'method',types.MethodType(lambda self: self.__class__.__name__,a))
>>> a.method()
'Foo'

lambda 的东西只是定义函数的花哨的简写:

def func(self):
    return self.__class__.__name__

setattr(a,'method',types.MethodType(func,a))
于 2013-01-29T18:43:19.500 回答