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学习笔记第十八章:使用asyncio包处理并发