Python学习笔记(十八)@property

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习笔记(十八)@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):
        self._width = value

    @property
    def height(self):
        return self._height

    @height.setter
    def height(self, value):
        self._height = value

    @property
    def resolution(self):
        return self._width + self._height


s = Screen()
s.width = 1024
s.height = 768

print(s.resolution)
assert s.resolution == 786432, 1024 * 768 = %d ? % s.resolution

@property的实现比较复杂,我们先考察如何使用。把一个getter方法变成属性,只需要加上@property就可以了,此时,@property本身又创建了另一个装饰器@height.setter,负责把一个setter方法变成属性赋值,于是,我们就拥有一个可控的属性操作。

 

以上是关于Python学习笔记(十八)@property的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记第十八周

Python学习笔记(二十八)多线程

python学习笔记(十八)网络编程中好用的模块介绍

流畅python学习笔记第十八章:使用asyncio包处理并发

day8-Python学习笔记(十八)面向对象,self,私有,属性方法

Python学习笔记__7.2章 使用@property