作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试实现 infer_class
函数,给定一个方法,找出该方法所属的类。
到目前为止,我有这样的东西:
import inspect
def infer_class(f):
if inspect.ismethod(f):
return f.im_self if f.im_class == type else f.im_class
# elif ... what about staticmethod-s?
else:
raise TypeError("Can't infer the class of %r" % f)
它不适用于@staticmethod-s,因为我无法想出实现它的方法。
有什么建议吗?
下面是 infer_class
的实际应用:
>>> class Wolf(object):
... @classmethod
... def huff(cls, a, b, c):
... pass
... def snarl(self):
... pass
... @staticmethod
... def puff(k,l, m):
... pass
...
>>> print infer_class(Wolf.huff)
<class '__main__.Wolf'>
>>> print infer_class(Wolf().huff)
<class '__main__.Wolf'>
>>> print infer_class(Wolf.snarl)
<class '__main__.Wolf'>
>>> print infer_class(Wolf().snarl)
<class '__main__.Wolf'>
>>> print infer_class(Wolf.puff)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 6, in infer_class
TypeError: Can't infer the class of <function puff at ...>
最佳答案
那是因为静态方法实际上不是方法。 staticmethod 描述符按原样返回原始函数。无法获取访问函数的类。但是无论如何都没有真正的理由对方法使用静态方法,总是使用类方法。
我发现静态方法的唯一用途是将函数对象存储为类属性,而不是将它们转换为方法。
关于python - 如何推断 @staticmethod 所属的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/949259/
我是一名优秀的程序员,十分优秀!