在Python中,有没有办法从另一个类调用类方法?我试图在Python中使用自己的MVC框架,我无法弄清楚如何从另一个类中的一个类调用一个方法。
以下是我想要发生的事情:
class A:
def method1(arg1, arg2):
# do code here
class B:
A.method1(1,2)
我正在慢慢从PHP进入Python,所以我正在寻找Python的call_user_func_array()
等效的Python。
答案 0 :(得分:39)
更新:刚看到帖子中对call_user_func_array
的引用。那不一样。使用getattr
获取函数对象,然后使用参数
class A(object):
def method1(self, a, b, c):
# foo
method = A.method1
method
现在是一个实际的函数对象。你可以直接调用(函数是python中的第一类对象,就像在PHP> 5.3中一样)。但是下面的考虑仍然适用。也就是说,除非您使用下面讨论的两个装饰器中的一个装饰A.method1
,将A
的实例作为第一个参数传递,或者在{{A
的实例上访问该方法,否则上面的示例将会爆炸。 1}}。
a = A()
method = a.method1
method(1, 2)
您有三种选择
A
的实例来调用method1
(使用两种可能的形式)classmethod
装饰器应用于method1
:您将无法再引用self
中的method1
,但您将获得cls
个实例在这种情况下,它是A
的地方。staticmethod
装饰器应用于method1
:您将无法再引用self
中的cls
或staticmethod1
,但您可以对A
显而易见,这些引用将由A
的所有子类继承,除非它们专门覆盖method1
而不调用super
。一些例子:
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)
请注意,与self
变量的名称完全取决于您的方式相同,cls
变量的名称也是如此,但这些是惯用值。
既然你知道怎么做,我会认真考虑 if 你想要这样做。通常,被称为未绑定(没有实例)的方法最好留在python中作为模块级函数。
答案 1 :(得分:10)
只需拨打电话并提供self
class A:
def m(self, x, y):
print(x+y)
class B:
def call_a(self):
A.m(self, 1, 2)
b = B()
b.call_a()
输出:3
答案 2 :(得分:1)
您可以使用以下内容从类中调用函数:
A().method1()
答案 3 :(得分:1)
class CurrentValue:
def __init__(self, value):
self.value = value
def set_val(self, k):
self.value = k
def get_val(self):
return self.value
class AddValue:
def av(self, ocv):
print('Before:', ocv.get_val())
num = int(input('Enter number to add : '))
nnum = num + ocv.get_val()
ocv.set_val(nnum)
print('After add :', ocv.get_val())
cvo = CurrentValue(5)
avo = AddValue()
avo.av(cvo)
我们定义2个类,CurrentValue和AddValue 我们在第一堂课中定义了3种方法 一个 init ,以便为实例变量self.value提供一个初始值 一个set_val方法,其中我们将self.value设置为k 一个get_val方法,在此方法中获取self.value的值 我们在第二类中定义一种方法 一个AV方法,我们将第一个类的对象作为参数(ovc)传递 我们创建第一个类的实例(cvo) 我们创建第二个类的实例(avo) 我们调用第二类的方法avo.av(cvo),并将已经从第一类创建的对象作为参数传递。 因此,通过这种方式,我想展示如何从另一个类中调用一个类的方法。
给您带来的不便,我们深感抱歉。 这不会再发生。
之前:5
输入要添加的数字:14
添加后:19
答案 4 :(得分:0)
在Python函数中是一等公民,因此您可以将其分配给其他任何值一样的属性。在这里,我们将A
的问候方法分配给B
上的属性。在__init__
之后,hello将以self.hello
的形式附加到B,这实际上是对A的hello的引用:
class A:
def hello(self, msg):
print(f"Hello {msg}")
class B:
hello = A.hello
print(A.hello)
print(B.hello)
b = B()
b.hello("good looking!")
打印:
<function A.hello at 0x7fcce55b9e50>
<function A.hello at 0x7fcce55b9e50>
Hello good looking!