我在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)。我该怎么做?
添加回答
举报
0/150
提交
取消