博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】python中的@property
阅读量:5050 次
发布时间:2019-06-12

本文共 2395 字,大约阅读时间需要 7 分钟。

转自:http://joy2everyone.iteye.com/blog/910950

@property 可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/getter也是需要的,我们视具体情况吧 

请注意以下代码场景: 
代码片段1: 

Python2.6代码  
  1. class Parrot(object):  
  2.     def __init__(self):  
  3.         self._voltage = 100000  
  4.   
  5.     @property  
  6.     def voltage(self):  
  7.         """Get the current voltage."""  
  8.         return self._voltage  
  9.   
  10. if __name__ == "__main__":  
  11.     # instance  
  12.     p = Parrot()  
  13.     # similarly invoke "getter" via @property  
  14.     print p.voltage  
  15.     # update, similarly invoke "setter"  
  16.     p.voltage = 12  

代码片段2: 

Python2.6代码  
  1. class Parrot:  
  2.     def __init__(self):  
  3.         self._voltage = 100000  
  4.   
  5.     @property  
  6.     def voltage(self):  
  7.         """Get the current voltage."""  
  8.         return self._voltage  
  9.   
  10. if __name__ == "__main__":  
  11.     # instance  
  12.     p = Parrot()  
  13.     # similarly invoke "getter" via @property  
  14.     print p.voltage  
  15.     # update, similarly invoke "setter"  
  16.     p.voltage = 12  

代码1、2的区别在于 
class Parrot(object): 
在python2.6下,分别运行测试 
片段1:将会提示一个预期的错误信息 AttributeError: can't set attribute 
片段2:正确运行 
参考python2.6文档,@property将提供一个ready-only property,以上代码没有提供对应的@voltage.setter,按理说片段2代码将提示运行错误,在python2.6文档中,我们可以找到以下信息: 
BIF: 
property([fget[, fset[, fdel[, doc]]]]) 
Return a property attribute for new-style classes (classes that derive from object). 
原来在python2.6下,内置类型 object 并不是默认的基类,如果在定义类时,没有明确说明的话(代码片段2),我们定义的Parrot(代码片段2)将不会继承object 
而object类正好提供了我们需要的@property功能,在文档中我们可以查到如下信息: 
new-style class 
Any class which inherits from object. This includes all built-in types like list and dict. Only new-style classes can use Python's newer, versatile features like __slots__, descriptors, properties, and __getattribute__(). 
同时我们也可以通过以下方法来验证 

Python 2.6代码  
  1. class A:  
  2.     pass  

>>type(A) 
<type 'classobj'> 

Python 2.6代码  
  1. class A(object):  
  2.     pass  

>>type(A) 
<type 'type'> 
从返回的<type 'classobj'>,<type 'type'>可以看出<type 'type'>是我们需要的object类型(python 3.0 将object类作为默认基类,所以都将返回<type 'type'>) 
为了考虑代码的python 版本过渡期的兼容性问题,我觉得应该定义class文件的时候,都应该显式定义object,做为一个好习惯 
最后的代码将如下: 

Python代码  
  1. class Parrot(object):  
  2.     def __init__(self):  
  3.         self._voltage = 100000  
  4.  
  5.     @property  
  6.     def voltage(self):  
  7.         """Get the current voltage."""  
  8.         return self._voltage  
  9.  
  10.     @voltage.setter  
  11.     def voltage(self, new_value):  
  12.         self._voltage = new_value  
  13.   
  14. if __name__ == "__main__":  
  15.     # instance  
  16.     p = Parrot()  
  17.     # similarly invoke "getter" via @property  
  18.     print p.voltage  
  19.     # update, similarly invoke "setter"  
  20.     p.voltage = 12  

另外,@property是在2.6、3.0新增的,2.5没有该功能。 
以上为自己@property经历,我也在学习python中,目前使用的是python 2.6.6 final,很多东西不懂,在此笔记下,也希望对其他同学有帮助 
Good luck! 

转载于:https://www.cnblogs.com/sheeta/p/3696473.html

你可能感兴趣的文章
机器学些技法(9)--Decision Tree
查看>>
静态页面复习--用semantic UI写一个10min首页
查看>>
在Windows下安装64位压缩包版mysql 5.7.11版本的方法
查看>>
drf权限组件
查看>>
输入月份和日期,得出是今年第几天
查看>>
利用mysqldump备份mysql
查看>>
Qt中子窗口全屏显示与退出全屏
查看>>
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>
吴裕雄 python 机器学习——数据预处理嵌入式特征选择
查看>>
Centos6.4安装JDK
查看>>
201521123069 《Java程序设计》 第4周学习总结
查看>>
线性表的顺序存储——线性表的本质和操作
查看>>
【linux】重置fedora root密码
查看>>
用swing做一个简单的正则验证工具
查看>>
百度坐标(BD-09)、国测局坐标(火星坐标,GCJ-02)和WGS-84坐标互转
查看>>
pig自定义UDF
查看>>
输入名字显示其生日,没有则让输入生日,做记录
查看>>
爬虫综合大作业
查看>>
Kubernetes 运维学习笔记
查看>>