42
此代碼返回一個錯誤:AttributeError:無法設置屬性 這真的很可惜,因爲我想使用屬性而不是調用方法。有誰知道爲什麼這個簡單的例子不工作?如何使用屬性裝飾器來設置屬性?
#!/usr/bin/python2.6
class Bar(object):
"""
...
"""
@property
def value():
"""
...
"""
def fget(self):
return self._value
def fset(self, value):
self._value = value
class Foo(object):
def __init__(self):
self.bar = Bar()
self.bar.value = "yyy"
if __name__ == '__main__':
foo = Foo()