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