教程集 www.jiaochengji.com
教程集 >  Python编程  >  Python入门  >  正文 Python内置的wraps装饰器有什么用

Python内置的wraps装饰器有什么用

发布时间:2021-12-16   编辑:jiaochengji.com
教程集为您提供Python内置的wraps装饰器有什么用等资源,欢迎您收藏本站,我们将为您提供最新的Python内置的wraps装饰器有什么用资源

Python装饰器(decorator)在实现的时候,被装饰后的函数其实已经是另外一个函数了(函数名等函数属性会发生改变),为了不影响,Python的functools包中提供了一个叫wraps的decorator来消除这样的副作用。写一个decorator的时候,最好在实现之前加上functools的wrap,它能保留原有函数的名称和docstring。

wraps内置方法的作用

查看一个函数的帮助文档有两种方法:

<pre class="brush:php;toolbar:false">func_name.__doc__ help(func_name)</pre>

先来看一个例子,定义timmer装饰器和index函数,并且都添加了帮助文档。

<pre class="brush:php;toolbar:false">import time def timmer(func):     def inner(*args,**kwargs):         'wrapper inner function'         start_time=time.time()         res=func(*args,**kwargs)         end_time=time.time()         print("run time: %s " %(end_time-start_time))         return res     return inner def index():     'index function'     time.sleep(2)     print("welcome to index page")</pre>

在index没有被timmer装饰前,来查看index的帮助文档:

<pre class="brush:php;toolbar:false">print(index.__doc__)</pre>

程序运行结果:

<pre class="brush:php;toolbar:false">index function</pre>

然后为index添加timmer装饰器,再次查看index函数的帮助文档:

<pre class="brush:php;toolbar:false">import time def timmer(func):     def inner(*args,**kwargs):         'wrapper inner function'         start_time=time.time()         res=func(*args,**kwargs)         end_time=time.time()         print("run time: %s " %(end_time-start_time))         return res     return inner @timmer def index():     'index function'     time.sleep(2)     print("welcome to index page") print(index.__doc__)</pre>

程序运行结果:

<pre class="brush:php;toolbar:false">wrapper inner function</pre>

可以看到,在为index函数添加装饰器后,index函数的帮助文档变成装饰器timmer内部函数的帮助文档了。

换句话说,就是原始index函数内部的数据被装饰器timmer修改了。

相关推荐:《Python视频教程》

怎么样才能在保留原始被装饰函数的数据的前提下,为函数添加新功能呢??就是python内置的wraps装饰器。

导入wraps装饰器,修改上面的代码,为timmer的内部函数添加wraps装饰器,然后再次查看被装饰函数的帮助文档:

<pre class="brush:php;toolbar:false">import time from functools import wraps def timmer(func):     @wraps(func)     def inner(*args,**kwargs):         'wrapper inner function'         start_time=time.time()         res=func(*args,**kwargs)         end_time=time.time()         print("run time: %s " %(end_time-start_time))         return res     return inner @timmer def index():     'index function'     time.sleep(2)     print("welcome to index page") print(index.__doc__)</pre>

运行程序,执行结果如下:

<pre class="brush:php;toolbar:false">index function</pre>

可以看到,index函数即使添加了装饰器,其内部的原始数据仍然没有被装饰器修改。

从上面的示例可以看出,wraps装饰器的作用就是保留被装饰对象的原始数据信息。

实例一:

不加wraps

<pre class="brush:php;toolbar:false"># -*- coding=utf-8 -*-  from functools import wraps    def my_decorator(func):     def wrapper(*args, **kwargs):         '''decorator'''         print('Calling decorated function...')         return func(*args, **kwargs)     return wrapper     @my_decorator  def example():     """Docstring"""      print('Called example function') print(example.__name__, example.__doc__)</pre>

执行结果:

<pre class="brush:php;toolbar:false">('wrapper', 'decorator')</pre>

实例二:

加wraps

<pre class="brush:php;toolbar:false"># -*- coding=utf-8 -*-  from functools import wraps    def my_decorator(func):     @wraps(func)     def wrapper(*args, **kwargs):         '''decorator'''         print('Calling decorated function...')         return func(*args, **kwargs)     return wrapper     @my_decorator  def example():     """Docstring"""      print('Called example function') print(example.__name__, example.__doc__)</pre>

执行结果:

<pre class="brush:php;toolbar:false">('example', 'Docstring')</pre>

总结:

warps 作用: 消除(被装饰后的函数名等属性的改变)副作用。

相关推荐:

Python之被装饰函数参数的设置与定义

您可能感兴趣的文章:
Python内置的wraps装饰器有什么用
python装饰器是什么
Python之装饰器简介
python装饰器以什么开头
python 装饰器详解
Python中使用装饰器的三个技巧
Python functools模块完全攻略
Django中装饰器的妙用
一个例子解释python装饰器
python中的装饰器的使用实战

[关闭]
~ ~