Python的property属性怎样使用?哪些问题要注意?
Admin 2021-05-31 群英技术资讯 646 次浏览
文本给大家分享的是关于Python中property属性的使用。下文有property属性使用的示例以及要注意的事项的介绍,具有一定的参加借鉴价值,需要的朋友可以参考学习。
property属性一种用起来像是使用实例属性一样的特殊属性,可以对应于某个方法,既要保护类的封装特性,又要让开发者可以使用 对象.属性 的方式操作方法,@property 装饰器,可以直接通过方法名来访问方法,不需要在方法名后添加一对 () 小括号。
来看下求圆的面积的例子
class Circle(object): PI = 3.14 def __init__(self, r): # r圆的半径 self.r = r self.__area = self.PI * self.r * self.r @property def area(self): return self.__area def get_area(self): return self.__area In [2]: c = Circle(10) In [3]: c.area Out[3]: 314.0 In [4]: c.get_area() Out[4]: 314.0
实例方法:c.get_area()
property装饰的方法:c.area
对于某商城中显示电脑主机的列表页面,每次请求不可能把数据库中的所有内容都显示到页面上,而是通过分页的功能局部显示,所以在向数据库中请求数据时就要显示的指定获取从第 m 条到第 n条的所有数据 这个分页的功能包括:
class Pager(object): def __init__(self, current_page): # 用户当前请求的页码(第一页、第二页...) self.current_page = current_page # 每页默认显示10条数据 self.per_items = 10 @property def start(self): val = (self.current_page - 1) * self.per_items return val @property def end(self): val = self.current_page * self.per_items return val # ipython测验 In [2]: p = Pager(1) In [3]: p.start # 就是起始值,即:m Out[3]: 0 In [4]: p.end # 就是结束值,即:n Out[4]: 10 In [5]: p = Pager(2) In [6]: p.start Out[6]: 10 In [7]: p.end Out[7]: 20
在类的实例方法上应用 @property 装饰器
Python中的类有旧式类 和 新式类,新式类 的属性比 旧式类的属性丰富。
旧式类,具有一种 @property 装饰器
class Goods: def __init__(self, name): self.name = name @property def price(self): return 100 # ipython测验 In [10]: g = Goods('手表') In [11]: g.price Out[11]: 100
新式类,具有三种 @property 装饰器
class Goods: """ python3中默认继承object类 以python2、3执行此程序的结果不同,因为只有在python3中才有@xxx.setter @xxx.deleter """ @property def price(self): print('@property') @price.setter def price(self, value): print('@price.setter') @price.deleter def price(self): print('@price.deleter') # ipython测验 In [13]: g = Goods() In [14]: g.price @property In [15]: g.price = 100 @price.setter In [16]: del g.price @price.deleter
由于新式类中具有三种访问方式,我们可以根据它们几个属性的访问特点,分别将三个方法定义为对同一个属性:获取、修改、删除。
# Goods类@property应用 class Goods(object): def __init__(self, name, price): # 原价 self.original_price = price # 折扣 self.discount = 0.8 @property def price(self): # 实际价格 = 原价 * 折扣 new_price = self.original_price * self.discount return new_price @price.setter def price(self, value): self.original_price = value @price.deleter def price(self): print('删除商品原价') del self.original_price # ipython测验 In [22]: g = Goods('小米手机', 2000) In [23]: g.price Out[23]: 1600.0 In [24]: g.price = 3000 In [25]: g.price Out[25]: 2400.0 In [26]: del g.price 删除商品原价 In [27]: g.price --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-27-38ee45b469f2> in <module> ----> 1 g.price <ipython-input-18-d5ea66eb7ece> in price(self) 12 def price(self): 13 # 实际价格 = 原价 * 折扣 ---> 14 new_price = self.original_price * self.discount 15 return new_price 16 AttributeError: 'Goods' object has no attribute 'original_price'
创建值为 property 对象的类属性,当使用类属性的方式创建 property 属性时,旧式类 和 新式类无区别
class Foo: def get_bar(self): return 'get_bar' BAR = property(get_bar) # ipython 测验 In [32]: f = Foo() In [33]: f.BAR Out[33]: 'get_bar'
f.BAR 自动调用 get_bar() 方法,并获取方法的返回值
property() 中有个四个参数
class Foo(object): def __init__(self, bar): self.bar = bar def get_bar(self): print('get_bar') return self.bar def set_bar(self, value): """必须要有两个参数""" print('set bar ' + value) self.bar = value def del_bar(self): print('del bar') del self.bar BAR = property(get_bar, set_bar, del_bar, "bar description...") # ipython测验 In [50]: f = Foo('python') In [51]: f.BAR get_bar Out[51]: 'python' In [52]: f.BAR = 'Java' set bar Java In [53]: f.BAR get_bar Out[53]: 'Java' In [54]: del f.BAR del bar
由于 类属性方式 创建 property 对象属性具有3种访问方式,我们可以根据它们几个属性的访问特点,分别将三个方法定义为对 同一个属性:获取、修改、删除 ,跟 @property 装饰器对比。
# Goods类 property对象类属性 应用 class Goods(object): def __init__(self, name, price): # 原价 self.original_price = price # 折扣 self.discount = 0.8 def get_price(self): # 实际价格 = 原价 * 折扣 new_price = self.original_price * self.discount return new_price def set_price(self, value): self.original_price = value def del_price(self): print('删除商品原价') del self.original_price PRICE = property(get_price, set_price, del_price, "price description") # ipython测验 In [59]: g = Goods('Mac电脑', 9000) In [60]: g.PRICE Out[60]: 7200.0 In [61]: g.PRICE = 10000 In [62]: g.PRICE Out[62]: 8000.0 In [63]: del g.PRICE 删除商品原价
# Goods类 @property装饰器 应用 class Goods(object): def __init__(self, name, price): # 原价 self.original_price = price # 折扣 self.discount = 0.8 @property def price(self): # 实际价格 = 原价 * 折扣 new_price = self.original_price * self.discount return new_price @price.setter def price(self, value): self.original_price = value @price.deleter def price(self): print('删除商品原价') del self.original_price # ipython测验 In [59]: g = Goods('Mac电脑', 9000) In [60]: g.PRICE Out[60]: 7200.0 In [61]: g.PRICE = 10000 In [62]: g.PRICE Out[62]: 8000.0 In [63]: del g.PRICE 删除商品原价
可以发现两种都可以实现但 @property 装饰器的在 旧式类中只有 @property , 没有@method.setter 和@method.deleter,新式类则两种都可以使用。因此看大家的习惯,选一种。
关于Python中property属性的介绍就分享到这,希望对大家理解property属性有一定的帮助,想要了解更多Python property属性的内容,大家可以继续关注其他文章。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了如何修改numpy array的数据类型,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
这篇文章主要为大家介绍了对比分析BN和dropout在预测和训练时区别,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
每当小编看见朋友圈有这种九宫格的照片就觉得特别秀,一直想自己什么时候也能来秀一个,所以直接拿这个练练手,酷炸朋友圈一波,直接进入主题,需要的朋友可以参考下
这篇文章主要介绍了pandas读取中文xlsx文件出现的问题及解决,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
这篇文章主要为大家介绍了pytorch教程中关于Tensor的操作使用,有需要的朋友可以借鉴参考下,希望可以有所帮助,祝大家升职加薪,共同进步
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008