@property可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/deleter也是需要的。
1》只有@property表示只读。
2》同时有@property和@x.setter表示可读可写。
3》同时有@property和@x.setter和@x.deleter表示可读可写可删除。
- class student(object):
- def __init__(self,id):
- self.__id=id
- @property
- def score(self):
- return self._score
- @score.setter
- def score(self,value):
- if not isinstance(value,int):
- raise ValueError(‘score must be an integer!‘)
- if value<0 or value>100:
- raise ValueError(‘score must between 0 and 100‘)
- self._score=value
- @property
- def get_id(self):
- return self.__id
-
- s=student(‘123456‘)
- s.score=60
- print s.score
- s.score=100
- print s.score
- print s.get_id
运行结果:
60
100
123456
@property和@x.setter和@x.deleter表示可读可写可删除
原文:http://www.cnblogs.com/howhy/p/7158007.html