4

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

2 回答 2

3

我很难让自己真正推荐这个,但它似乎确实适用于简单的案例,至少:

import inspect

def crack_staticmethod(sm):
    """
    Returns (class, attribute name) for `sm` if `sm` is a
    @staticmethod.
    """
    mod = inspect.getmodule(sm)
    for classname in dir(mod):
        cls = getattr(mod, classname, None)
        if cls is not None:
            try:
                ca = inspect.classify_class_attrs(cls)
                for attribute in ca:
                    o = attribute.object
                    if isinstance(o, staticmethod) and getattr(cls, sm.__name__) == sm:
                        return (cls, sm.__name__)
            except AttributeError:
                pass
于 2009-06-08T17:55:32.587 回答
3

那是因为静态方法真的不是方法。静态方法描述符按原样返回原始函数。无法获取访问该函数的类。但是无论如何都没有真正的理由为方法使用静态方法,总是使用类方法。

我发现静态方法的唯一用途是将函数对象存储为类属性,而不是让它们变成方法。

于 2009-06-04T09:09:15.810 回答