gpt4 book ai didi

python - 使实例中的选定属性成为只读的最简单、最简洁的方法是什么?

转载 作者:太空狗 更新时间:2023-10-29 20:50:50 24 4
gpt4 key购买 nike

在 Python 中,我想让一个类的 selected 实例属性对类外的代码只读。我希望外部代码无法更改该属性,除非通过在实例上调用方法来间接更改。我希望语法简洁。什么是最好的方法? (我在下面给出我目前的最佳答案...)

最佳答案

您应该使用 @property 装饰器。

>>> class a(object):
... def __init__(self, x):
... self.x = x
... @property
... def xval(self):
... return self.x
...
>>> b = a(5)
>>> b.xval
5
>>> b.xval = 6
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: can't set attribute

关于python - 使实例中的选定属性成为只读的最简单、最简洁的方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/125034/

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