python基础教学之125 装饰器简介(python3 property装饰器实现原理与用法示例)
类别:脚本大全 浏览量:289
时间:2021-10-01 01:25:09 python基础教学之125 装饰器简介
python3 property装饰器实现原理与用法示例本文实例讲述了python3 property装饰器实现原理与用法。分享给大家供大家参考,具体如下:
学习python的同学,慢慢的都会接触到装饰器,装饰器在python里是功能强大的语法。装饰器配合python的魔法方法,能实现很多意想不到的功能。废话不多说,如果你已经掌握了闭包的原理,代码的逻辑还是可以看明白的,咱们直接进入正题。
property的意义
@property
把一个类的getter方法变成属性,如果还有setter方法,就在setter方法前面加上@method.setter
。使用类属性=property(getx,setx,delx,desc)也是可以的。
实现很简单,那么它背后的原理是什么呢?
property类的伪代码如下,里面涉及了__get__、__set__、__delete__魔法方法。decorator类是装饰器类,target是目标类。当你设置装饰器类的实例对象为目标类的x属性后,当试图访问目标类的x属性会触发装饰器类的__get__方法;当为目标类的x属性赋值时,会触发装饰器类的__setter__方法;尝试删除目标类的x属性时,会触发装饰器类的__delete__方法。当访问target.x.__doc__,可以打印出装饰器类的描述文档。事实上这种装饰器类也被称为描述符类。描述符类就是将一个特殊类的实例指派给一个类的属性。
类属性实现方式:
|
class decorator( object ): def __init__( self , fget = none, fset = none, fdel = none, doc = none): self .fget = fget self .fset = fset self .fdel = fdel self .__doc__ = doc def __get__( self , instance, owner): if instance is none: return self return self .fget(instance) def __set__( self , instance, value): self .fset(instance, value) def __delete__( self , instance): self .fdel(instance) def getter( self , fget): return decorator(fget, self .fset, self .fdel, self .__doc__) def setter( self , fset): return decorator( self .fget, fset, self .fdel, self .__doc__) def deleter( self , fdel): return decorator( self .fget, self .fset, fdel, self .__doc__) class target( object ): desc = "amazing pyhton" def __init__( self , attr = 5 ): self ._x = attr def getx( self ): return self ._x def setx( self , value): self ._x = value def delx( self ): del self ._x x = decorator(getx,setx,delx,desc) |
装饰器实现方式:
|
class decorator( object ): def __init__( self , fget = none, fset = none, fdel = none, doc = none): self .fget = fget self .fset = fset self .fdel = fdel self .__doc__ = doc def __get__( self , instance, owner): if instance is none: return self return self .fget(instance) def __set__( self , instance, value): self .fset(instance, value) def __delete__( self , instance): self .fdel(instance) def getter( self , fget): return decorator(fget, self .fset, self .fdel, self .__doc__) def setter( self , fset): return decorator( self .fget, fset, self .fdel, self .__doc__) def deleter( self , fdel): return decorator( self .fget, self .fset, fdel, self .__doc__) class target( object ): desc = "amazing pyhton" def __init__( self , attr = 5 ): self ._x = attr @decorator def show( self ): return self ._x @show .setter def show( self , value): self ._x = value @show .deleter def show( self ): del self ._x |
希望本文所述对大家python程序设计有所帮助。
原文链接:https://blog.csdn.net/weixin_43265804/article/details/82863984
您可能感兴趣
- python 装饰器模式(python重试装饰器的简单实现方法)
- python装饰器怎么设置(深入了解和应用Python 装饰器 @decorator)
- python装饰器语法与应用(python装饰器简介---这一篇也许就够了推荐)
- python装饰器初学者教程(Python3.5装饰器原理及应用实例详解)
- python装饰器怎么编写(Python函数装饰器常见使用方法实例详解)
- 12步轻松搞定python装饰器(Python3.5装饰器典型案例分析)
- python基础教学之125 装饰器简介(python3 property装饰器实现原理与用法示例)
- python装饰器使用说明(详解Python装饰器)
- 《道德经》 人生避开骄狂,才能免去祸患(道德经人生避开骄狂)
- 郭麒麟(郭麒麟)
- 古人十句 戒骄 名言,醍醐灌顶,受益匪浅(古人十句戒骄名言)
- 《道德经》:功成不局,泰而不骄(道德经:功成不局)
- 每日一典 过江之鲫(每日一典过江之鲫)
- 红色代表什么(红色代表什么意义和象征)
热门推荐
- dedecms搜索功能怎么设置详细(DEDECMS自定义联动类别调用及修改方法)
- 如何让yii2高级模板运行起来(Yii框架数据库查询、增加、删除操作示例)
- laravel admin文档(Laravel-添加后台模板AdminLte的实现方法)
- JS中Location
- css3最新特效(CSS3实现的文字弹出特效)
- thinkphp前后端配合(thinkPHP+LayUI 流加载实现功能)
- docker默认网桥设置(Docker默认网段修改实现方法解析)
- dedecms水印(dedecms上传透明背景图片变成黑色的解决办法)
- python后端生成的pdf文件(Python实现截取PDF文件中的几页代码实例)
- django数据库查询条件(djang常用查询SQL语句的使用代码)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8