python @property装饰器

Posted 夜游星

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python @property装饰器相关的知识,希望对你有一定的参考价值。

@property装饰器

@property装饰器就是负责把一个方法变成属性调用
把一个getter方法变成属性,只需要加上@property就可以了,
此时,@property本身又创建了另一个装饰器@score.setter,负责把一个setter方法变成属性赋值
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!‘)
。。。
还可以定义只读属性,只定义getter方法,不定义setter方法就是一个只读属性
class Student(object):

@property
def birth(self):
return self._birth

@birth.setter
def birth(self, value):
self._birth = value

@property
def age(self):
return 2015 - self._birth

birth是可读写属性,而age就是一个只读属性


















以上是关于python @property装饰器的主要内容,如果未能解决你的问题,请参考以下文章

python @property装饰器

python装饰器之property

python @property装饰器

python装饰器@property

Python @property装饰器

python 装饰器和property