gpt4 book ai didi

python - 如何推断 @staticmethod 所属的类?

转载 作者:太空狗 更新时间:2023-10-30 02:35:43 27 4
gpt4 key购买 nike

我正在尝试实现 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com