我想知道一个子类是否可以调用它的父静态方法,并对其进行测试:它像我希望的那样工作!
class A(object):
@classmethod
def static(cls):
print('act on '+cls.__name__)
class B(A):
def foo(self):
print('foo()')
>>> B.static()
act on B
我想知道在使用该技术时是否有需要注意的陷阱......
有什么建议吗?