这是你想要的吗?
class C(object): def __init__(self): self._x = None @property def x(self): """I'm the 'x' property.""" return self._x @x.setter def x(self, value): self._x = value
取自http://docs.python.org/library/functions.html#property。
欢迎分享,转载请注明来源:内存溢出
这是你想要的吗?
class C(object): def __init__(self): self._x = None @property def x(self): """I'm the 'x' property.""" return self._x @x.setter def x(self, value): self._x = value
取自http://docs.python.org/library/functions.html#property。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)