前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python @property用法作用

python @property用法作用

作者头像
py3study
发布2020-01-13 01:42:00
6550
发布2020-01-13 01:42:00
举报
文章被收录于专栏:python3

@property广泛应用在类的定义中,可以让调用者写出简短的代码,同时保证对参数进行必要的检查,这样,程序运行时就减少了出错的可能性。

练习

请利用@property给一个Screen对象加上width和height属性,以及一个只读属性resolution:

代码语言:javascript
复制
#_*_ 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)
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 练习
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档