gpt4 book ai didi

python - 属性错误 : 'cached_property' object has no attribute 'setter'

转载 作者:行者123 更新时间:2023-12-05 05:02:42 26 4
gpt4 key购买 nike

我正在使用 functools.cached_property 来内存一些函数。

但是好像不支持setter。

例如

class User
@cached_property
def name(self):
return self._name

@name.setter
def name(self, val):
self._name = val

但是在导入的时候遇到了AttributeError: 'cached_property' object has no attribute 'setter'

最佳答案

@cached_property 专为不可变值而设计。你不能指望这个装饰器会模仿标准属性的所有特性。在 python 文档中,您可以找到:“cached_property() 的机制与 property() 有所不同。除非定义了 setter,否则常规属性会阻止属性写入。相反,cached_property 允许写入。”

关于python - 属性错误 : 'cached_property' object has no attribute 'setter' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62013695/

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