码迷,mamicode.com
首页 > 其他好文 > 详细

@property的应用

时间:2018-04-18 01:07:43      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:bsp   value   利用   class   turn   pre   code   一个   elf   

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

class Screen(object):
    @property
    def width(self):
        return self._width
    @width.setter
    def width(self,value):
        self._width=value
    @property
    def high(self):
        return self._high
    @high.setter
    def high(self,value):
        self._high=value
    @property
    def resolution(self):
        return self._high * self._width
        
s = Screen()
s.width = 1024
s.high = 768
print(resolution =, s.resolution)
if s.resolution == 786432:
    print(测试通过!)
else:
    print(测试失败!)

 

@property的应用

标签:bsp   value   利用   class   turn   pre   code   一个   elf   

原文地址:https://www.cnblogs.com/litthorse/p/8870866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!