Python:从子类的类方法中访问className

时间:2018-05-11 09:03:49

标签: python inheritance class-method classname

我的问题很容易让我知道:

class A(object):
    def methodA():
        print(__class__)
class B(A):
    pass

B.methodA()
#<class '__main__.A'>

我想上课&#39; 主要 .B&#39;没有覆盖B类中的方法A.

如果有帮助,则可以是抽象类

0 个答案:

没有答案