答案 0 :(得分:30)
以下是每个例子:
from inspect import stack
class Foo:
def __init__(self):
print __file__
print self.__class__.__name__
print stack()[0][3]
f = Foo()
答案 1 :(得分:9)
import sys
class A:
def __init__(self):
print __file__
print self.__class__.__name__
print sys._getframe().f_code.co_name
a = A()
答案 2 :(得分:5)
self.__class__.__name__ # name of class i'm in
其余的sys和trace模块
http://docs.python.org/library/sys.html http://docs.python.org/library/trace.html
更多信息: https://mail.python.org/pipermail/python-list/2001-August/096499.html 和 http://www.dalkescientific.com/writings/diary/archive/2005/04/20/tracing_python_code.html
您是否希望它用于错误报告,因为回溯模块可以处理:
答案 3 :(得分:3)
非常小心。考虑:
class A:
pass
B = A
b = B()
这里b
的'班级名称'是什么?是A还是B?为什么呢?
关键是,你不应该知道或关心。对象就是这样的:它的名字很少有用。