python一个类调用另一个类的方法_python – 从另一个类调用类方法

本文介绍了在Python中如何从一个类调用另一个类的方法,包括使用classmethod、staticmethod和实例方法的区别。通过示例展示了不同调用方式,强调了在不同场景下选择合适方法的重要性。
摘要由CSDN通过智能技术生成

更新:刚刚看到你的帖子中的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中作为模块级别的功能最好。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值