我在Python中使用静态方法,如下所示:
class A(object):
@staticmethod
def sfun():
print "this is statice method"
class AA(A):
我想在sfun中获得类的类型(A或AA)。我该怎么做?
相关分类