gpt4 book ai didi

python - 如何在 Python 的基类中创建派生类的对象?

转载 作者:太空狗 更新时间:2023-10-30 01:50:36 26 4
gpt4 key购买 nike

我有这样的代码:

class Base:
def __init__(self):
pass

def new_obj(self):
return Base() # ← return Derived()

class Derived(Base):
def __init__(self):
pass

在注释行中,我实际上想要的不完全是 Derived 对象,而是 self 真正属于的类的任何对象。

这是来自 Mercurial 的真实示例.

怎么做?

最佳答案

def new_obj(self):
return self.__class__()

关于python - 如何在 Python 的基类中创建派生类的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36360026/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com