您现在的位置是:课程教程文章
python中@property是什么
2023-12-14 20:21课程教程文章 人已围观
说明
1、内置的@property装饰器Python负责将一种方法转换为属性调用。
2、@property广泛应用于类的定义中,可以让调用者写出简短的代码。
同时保证对参数进行必要的检查,从而序运行中出错的可能性。
实例
classStudent(object): @property defscore(self): returnself._score @score.setter defscore(self,value): ifnotisinstance(value,int): raiseValueError('scoremustbeaninteger!') ifvalue<0orvalue>100: raiseValueError('scoremustbetween0~100!') self._score=value
以上就是python中@property的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
课程教程:python中@property是什么上一篇:python自定义异常的介绍
下一篇:没有了