- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试在带有装饰器@classmethod 的方法中调用方法,知道如何实现吗?例如我有:
class A():
def B(self):
#do something
return something
@classmethod
def C(cls):
#do something
x = B() #call B method
return None
我有一个错误:
NameError: global name 'B' is not defined
我可以调用 B 还是将 B 也定义为类方法?
最佳答案
这里的问题不是你的函数是“用户定义的”,问题是“x=B()”没有在你的类中调用一个名为“B”的方法,它调用了一个名为“B”的方法"在全局命名空间中。
为了说明发生了什么,请看这段代码:
B="1"
class A():
B="2"
def myfunc(cls):
print B
a = A()
a.myfunc()
如果您运行它,您会看到输出为 1
。
如果您将 print
语句更改为 print A.B
,您将得到 2
。
在您的情况下,您需要调用 A.B()
而不是简单地调用 B()
但是,正如其他人所指出的,B()
是一个实例方法。它期望它传递的第一个参数是该类的一个实例。根据 B 所做的事情,您可能会遇到由于没有实例来传递它而导致的问题。您可以通过将一些其他对象(例如类本身)传递给它,或者通过创建一个新对象传递进来,以各种方式解决这个问题;但在我看来,如果 C() 需要调用实例方法,那么 C() 本身应该是一个实例方法。
Difference between Class and Instance methods谈论类和实例方法之间的区别。
关于python - 我们可以在@classmethod 函数中调用用户定义的实例方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24707455/
根据Python docs : If a class method is called for a derived class, the derived class object is passed
假设我有一个类 class SimpleGenerator(object): @classmethod def get_description(cls): return
我必须使用一些 Python 库,其中包含具有各种实用程序的文件:类和方法。其中一种方法以下列方式定义(我不能放完整代码): @classmethod def do_something(cls, ar
在 Python 中,我可以使用 @classmethod 创建一个类方法。装饰师: >>> class C: ... @classmethod ... def f(cls): ...
我通常使用 isinstance 进行构造函数重载,但人们也建议使用 @classmethod 来实现相同的目的。但据我所知,@classmethod 共享该变量。 下面是一个简单的类 class a
遇到这个难题时,我正在学习 Python 中的类和对象。下面是相同代码的两种情况,一种没有@classmethod,另一种有@classmethod: #without @classmethod >>
装饰器classmethod的源代码在python源码在哪里。具体来说,我无法找到它在 2.7.2 版中定义的确切文件 最佳答案 我没有回答你的问题 - 但下面的代码显示了用纯 Python 编写的等
TL;DR 如何确定一个函数是使用 @classmethod 还是具有相同效果的东西定义的? 我的问题 为了实现一个类装饰器,我想检查一个方法是否将类作为它的第一个参数,例如通过 @classmeth
我有以下 Python 元类,它为每个类添加了一个 deco_with_args 装饰器: def deco_with_args(baz): def decorator(func):
我想使用@classmethod,但我不想用它污染实例的命名空间。如果我有一个类方法 for_classes_only,如何防止实例获取它? class MyThing(object): de
这个问题已经有答案了: What is the purpose of class methods? (18 个回答) 已关闭 4 年前。 我观看了一个 YouTube 视频,解释了 @classmet
这更像是一个过程问题,但我现在用 Python 编程已经有一段时间了,我试图理解单元测试、功能测试之间的区别,以及何时适本地使用模拟以便测试功能。我有以下安排: @classmethod def ge
据说: When it would yield a class method object, it is transformed into a bound user-defined method ob
我尝试在带有装饰器@classmethod 的方法中调用方法,知道如何实现吗?例如我有: class A(): def B(self): #do something retur
我有以下代码来查找数据库中的对象实例,然后使用数据创建 python 对象。 class Parent: @staticmethod def get(table, **kwargs):
我有这个谷歌应用程序引擎数据存储区 NDB 模型: class pySessions(ndb.Model): # sid is the key/id data = ndb.Blobpr
我有一个装饰器叫做 Special将函数转换为自身的两个版本:一个可以直接调用并在结果前加上前缀 'regular '和一个可以用 .special 调用的并在结果前加上 'special ' 前缀:
我想猴子修补一个类方法,保留旧功能。考虑我的代码来理解这个想法。这是我的代码(非常综合的例子)。 #!/usr/bin/env python class A: @classmethod def
我在 python 中基本上有以下内容: class X(object): pass class Y(object): @classmethod def method(cls, x_inst,
我有以下代码: class ObjectOne(object): @classmethod def print_class_name(cls): print cls._
我是一名优秀的程序员,十分优秀!