python @property用法作用
短信预约 -IT技能 免费直播动态提醒
@property
广泛应用在类的定义中,可以让调用者写出简短的代码,同时保证对参数进行必要的检查,这样,程序运行时就减少了出错的可能性。详见链接:廖雪峰python3使用@property
练习
请利用@property
给一个Screen
对象加上width
和height
属性,以及一个只读属性resolution
:
#_*_ coding: utf-8 _*_
class Screen(object):
@property
def width(self):
return self._width
@width.setter
def width(self,value):
if not isinstance(value,int):
raise ValueError(' value is wrong type,it need int')
if value < 0:
raise ValueError('value must > 0')
self._width = value
@property
def height(self):
return self._height
@height.setter
def height(self,value):
if not isinstance(value,int):
raise ValueError(' value is wrong type,it need int')
if value < 0:
raise ValueError('value must > 0')
self._height = value
@property
def resolution(self):
self._resolution = self._height * self._width
return self._resolution
s= Screen()
s.width = 1024
print(s.width)
s.height = 768
print(s.height)
print(s.resolution)
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341