gpt4 book ai didi

python - 属性 fset 函数没有被调用

转载 作者:太空宇宙 更新时间:2023-11-03 16:37:21 25 4
gpt4 key购买 nike

我无法弄清楚我在这里开始做错了什么。我总是使用 property( fget=fget, fset=fset ) 初始化托管类属性,并且我记得我的 getter 和 setter 都曾在 Python 2 和 3 中工作。现在,使用几乎直接来自 the official documentation 的代码,我发现我的 getter 可以工作,但我的 setter 函数似乎在 Python 2.x 中被忽略 - 对属性的赋值只会消除其属性并将其替换为普通属性。然而,Python 3.x 中一切都很好。我究竟做错了什么?

class foo:
def getcode( self ): return self.__code
def setcode( self, value ): self.__code = value.upper()[ : 1 ]
def delcode( self ): raise AttributeError( "cannot remove the 'code' property" )
code = property( fget=getcode, fset=setcode, fdel=delcode, doc='A single upper-case character' )

def __init__( self, code='A' ): self.setcode( code )

f = foo(); f.code = 'A'
print( f.code ) # expect 'A', get 'A'
f = foo(); f.code = 'bbb'
print( f.code ) # expect 'B' but python 2.7.10 prints 'bbb'
f = foo(); f.code = 5 # expect an exception but python 2.7.10 does not raise one
print( f.code )

最佳答案

默认情况下,Python 2.x 类不继承自 object,这使得引入的旧样式类和新样式类之间的区别通过 Python >2.2。

property() 是构建数据描述符的一种简洁方法,该数据描述符在访问属性时触发函数调用,但它完全可以作为文档 here 中描述仅适用于新式类:类有从对象继承。

关于python - 属性 fset 函数没有被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37103608/

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