更新:刚刚看到你的帖子中的call_user_func_array的引用。那不一样。使用getattr获取函数对象,然后使用参数调用它
class A(object):
def method1(self, a, b, c):
# foo
methodname = 'method1'
method = getattr(A, methodname)
方法现在是一个实际的函数对象。你可以直接调用(函数是python中的第一类对象,就像在PHP> 5.3中一样)。但下面的考虑仍然适用。也就是说,上面的例子将会爆炸,除非您使用下面讨论的两个装饰器之一来装饰A.method1,将A的实例作为第一个参数传递,或者将getattr应用于A的实例。
a = A()
method = getattr(a, methodname)
method(1, 2)
你有三个选择
>使用A的实例调用method1(使用两种可能的形式)
>将classmethod装饰器应用于method1:您将无法再在method1中引用self,但是在这种情况下,您将会在其位置传递一个cls实例。
>将staticmethod装饰器应用于method1:您将无法再在staticmethod1中引用self或cls,但是您可以对A引用进行硬编码,但显然这些引用将被A的所有子类继承,除非它们专门覆盖method1不要叫超级。
一些例子:
class Test1(object): # always inherit from object in 2.x. it's called new-style classes. look it up
def method1(self, a, b):
return a + b
@staticmethod
def method2(a, b):
return a + b
@classmethod
def method3(cls, a, b):
return cls.method2(a, b)
t = Test1() # same as doing it in another class
Test1.method1(t, 1, 2) #form one of calling a method on an instance
t.method1(1, 2) # form two (the common one) essentially reduces to form one
Test1.method2(1, 2) #the static method can be called with just arguments
t.method2(1, 2) # on an instance or the class
Test1.method3(1, 2) # ditto for the class method. It will have access to the class
t.method3(1, 2) # that it's called on (the subclass if called on a subclass)
# but will not have access to the instance it's called on
# (if it is called on an instance)
请注意,以同样的方式,自变量的名称完全取决于您,cls变量的名称也是这些变量的名称,但它们是常规值。
现在你知道如何做,我会认真考虑,如果你想这样做。通常情况下,被称为unbound(没有实例)的方法在python中作为模块级别的功能最好。