繁体   English   中英

Python如何覆盖子级中的类成员并从父级访问它?

[英]Python How to override a class member in the child and access it from parent?

所以在Python中我有一个这样的类:

class Parent(object):
    ID = None

    @staticmethod
    def getId():
        return Parent.ID

然后我覆盖子类中的ID,如下所示:

class Child(Parent):
    ID = "Child Class"

现在我想调用子getId()方法:

ch = Child()
print ch.getId()

我现在想看“儿童班”,但我得到“无”。
我怎样才能在Python中实现这一目标?

PS:我知道我可以直接访问ch.ID ,所以这可能更像是一个理论问题。

使用类方法:

class Parent(object):
    ID = None

    @classmethod
    def getId(cls):
        return cls.ID

class Child(Parent):
    ID = "Child Class"

print Child.getId() # "Child Class"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM