gpt4 book ai didi

python - 如何更改子类python中的父属性

转载 作者:太空狗 更新时间:2023-10-29 19:36:36 25 4
gpt4 key购买 nike

我有以下类(class)

class Foo():
data = "abc"

我把它子类化

class Bar(Foo):
data +="def"

我正在尝试编辑子类中的父类属性。我希望我的父类有一些字符串,我的子类应该向该字符串添加一些额外的数据。应该如何在 Python 中完成?我设计错了吗?

最佳答案

你问了两个问题:

How it should be done in Python?

class Bar(Foo):
data = Foo.data + "def"

Am i wrong by design?

我通常不在 Python 中使用类变量。一个更典型的范例是初始化一个实例变量:

>>> class Foo(object):
... data = "abc"
...
>>> class Bar(Foo):
... def __init__(self):
... super(Bar, self).__init__()
... self.data += "def"
...
>>> b = Bar()
>>> b.data
'abcdef'
>>>

关于python - 如何更改子类python中的父属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33785106/

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