- Python 3 教程
- Python3 基本数据类型
- Python3 解释器
- Python3 注释
- Python3 运算符
- Python3 数字(Number)
- Python3 字符串
- Python3 列表
- Python3 元组
- Python3 字典
- Python3 编程第一步
- Python3 条件控制
- Python3 循环语句
- Python3 迭代器与生成器
- Python3 函数
- Python3 数据结构
- Python3 模块
- Python3 输入和输出
- Python3 File(文件) 方法
- Python3 OS 文件/目录方法
- Python3 错误和异常
- Python3 面向对象
- Python3 标准库概览
- Python3 实例
- Python3 正则表达式
- Python CGI编程
- Python3 MySQL 数据库连接
- Python3 网络编程
- Python3 SMTP发送邮件
- Python3 多线程
- Python3 XML解析
- Python3 JSON 数据解析
- Python3 日期和时间
- Python3 range() 函数用法
- Python3 内置函数
Python property() 函数
描述
property() 函数的作用是在新式类中返回属性值。
语法
以下是 property() 方法的语法:
class property([fget[, fset[, fdel[, doc]]]])
参数
- fget -- 获取属性值的函数
- fset -- 设置属性值的函数
- fdel -- 删除属性值函数
- doc -- 属性描述信息
返回值
返回新式类属性。
实例
定义一个可控属性值 x
如果 c 是 C 的实例化, c.x 将触发 getter,c.x = value 将触发 setter , del c.x 触发 deleter。
如果给定 doc 参数,其将成为这个属性值的 docstring,否则 property 函数就会复制 fget 函数的 docstring(如果有的话)。
将 property 函数用作装饰器可以很方便的创建只读属性:
上面的代码将 voltage() 方法转化成同名只读属性的 getter 方法。
property 的 getter,setter 和 deleter 方法同样可以用作装饰器:
这个代码和第一个例子完全相同,但要注意这些额外函数的名字和 property 下的一样,例如这里的 x。
上一篇:Python iter() 函数
下一篇:Python bool() 函数
扫描二维码
程序员编程王