关于反射:在Python中,如何获得成员函数类的名称?

In Python, how can you get the name of a member function's class?

我有一个函数接受另一个函数作为参数。如果函数是类的成员,我需要找到该类的名称。例如。

1
2
def analyser(testFunc):
    print testFunc.__name__, 'belongs to the class, ...

我想

1
testFunc.__class__

可以解决我的问题,但这只是告诉我testfunc是一个函数。


从python 3.3开始,.im_class就不存在了。你可以用.__qualname__代替。以下是相应的政治公众人物:https://www.python.org/dev/peps/pep-3155/

1
2
3
4
5
6
7
8
9
class C:
    def f(): pass
    class D:
        def g(): pass

print(C.__qualname__) # 'C'
print(C.f.__qualname__) # 'C.f'
print(C.D.__qualname__) #'C.D'
print(C.D.g.__qualname__) #'C.D.g'


1
testFunc.im_class

https://docs.python.org/reference/datamodel.html标准类型层次结构

im_class is the class of im_self for
bound methods or the class that asked
for the method for unbound methods


我不是Python专家,但这行吗?

1
testFunc.__self__.__class__

它似乎适用于绑定方法,但在您的情况下,您可能正在使用未绑定方法,在这种情况下,这可能会更好地工作:

1
testFunc.__objclass__

这是我使用的测试:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Python 2.5.2 (r252:60911, Jul 31 2008, 17:31:22)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type"help","copyright","credits" or"license" for more information.
>>> import hashlib
>>> hd = hashlib.md5().hexdigest
>>> hd
<built-in method hexdigest of _hashlib.HASH object at 0x7f9492d96960>
>>> hd.__self__.__class__
<type '_hashlib.HASH'>
>>> hd2 = hd.__self__.__class__.hexdigest
>>> hd2
<method 'hexdigest' of '_hashlib.HASH' objects>
>>> hd2.__objclass__
<type '_hashlib.HASH'>

哦,是的,还有一件事:

1
2
3
4
5
6
7
8
>>> hd.im_class
Traceback (most recent call last):
  File"<stdin>", line 1, in <module>
AttributeError: 'builtin_function_or_method' object has no attribute 'im_class'
>>> hd2.im_class
Traceback (most recent call last):
  File"<stdin>", line 1, in <module>
AttributeError: 'method_descriptor' object has no attribute 'im_class'

因此,如果你想要防弹的东西,它也应该处理__objclass____self__。但是你的里程数可能会有所不同。


实例方法将具有属性.im_class.im_func.im_self

http://docs.python.org/library/inspect.html类型和成员

您可能想看看函数是否有hasattr.im ou类,并从中获取类信息。