@property使用
Posted ink-kai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@property使用相关的知识,希望对你有一定的参考价值。
1.介绍
将类方法转换为类属性,可以用.直接获取属性值或者对属性进行赋值
Python内置的@property装饰器就是负责把一个方法变成属性调用的
2. 实现
class student(object):
@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 ~ 100!')
self._score = value
stu=student()
stu.score=99
print(stu.score)
3. 总结
score()方法上增加@property装饰器,等同于score= property(fget=score),将score赋值为property的实例。
所以,被装饰后的score,已经不是这个实例方法score了,而是property的实例score。
@property广泛应用在类的定义中,可以让调用者写出简短的代码,同时保证对参数进行必要的检查,这样,程序运行时就减少了出错的可能性。
以上是关于@property使用的主要内容,如果未能解决你的问题,请参考以下文章
[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段