Python中装饰器学习总结


Posted in Python onFebruary 10, 2018

本文研究的主要内容是Python中装饰器相关学习总结,具体如下。

装饰器(decorator)功能

  • 引入日志
  • 函数执行时间统计
  • 执行函数前预备处理
  • 执行函数后清理功能
  • 权限校验等场景
  • 缓存

装饰器示例

例1:无参数的函数

from time import ctime, sleep

def timefun(func):
 def wrappedfunc():
  print("%s called at %s"%(func.__name__, ctime()))
  func()
 return wrappedfunc

@timefun
def foo():
 print("I am foo")

foo()
sleep(2)
foo()

分析如下:

上面代码理解装饰器执行行为可理解成

foo = timefun(foo)

1,foo先作为参数赋值给func后,foo接收指向timefun返回的wrappedfunc
2,调用foo(),即等价调用wrappedfunc()
3,内部函数wrappedfunc被引用,所以外部函数的func变量(自由变量)并没有释放
4,func里保存的是原foo函数对象

例2:被装饰的函数有参数

from time import ctime, sleep

def timefun(func):
 def wrappedfunc(a, b):
  print("%s called at %s"%(func.__name__, ctime()))
  print(a, b)
  func(a, b)
 return wrappedfunc

@timefun
def foo(a, b):
 print(a+b)

foo(3,5)
sleep(2)
foo(2,4)

例3:被装饰的函数有不定长参数

from time import ctime, sleep

def timefun(func):
 def wrappedfunc(*args, **kwargs):
  print("%s called at %s"%(func.__name__, ctime()))
  func(*args, **kwargs)
 return wrappedfunc

@timefun
def foo(a, b, c):
 print(a+b+c)

foo(3,5,7)
sleep(2)
foo(2,4,9)

例4:装饰器中的return

from time import ctime, sleep

def timefun(func):
 def wrappedfunc():
  print("%s called at %s"%(func.__name__, ctime()))
  func()
 return wrappedfunc

@timefun
def foo():
 print("I am foo")

@timefun
def getInfo():
 return '----hahah---'

foo()
sleep(2)
foo()


print(getInfo())

执行结果:

foo called at Sun Jun 18 00:31:53 2017
I am foo
foo called at Sun Jun 18 00:31:55 2017
I am foo
getInfo called at Sun Jun 18 00:31:55 2017
None

如果修改装饰器为return func(),则运行结果:

foo called at Sun Jun 18 00:34:12 2017
I am foo
foo called at Sun Jun 18 00:34:14 2017
I am foo
getInfo called at Sun Jun 18 00:34:14 2017
----hahah---

小结:一般情况下为了让装饰器更通用,可以有return

例5:装饰器带参数,在原有装饰器的基础上,设置外部变量

from time import ctime, sleep

def timefun_arg(pre="hello"):
 def timefun(func):
  def wrappedfunc():
   print("%s called at %s %s"%(func.__name__, ctime(), pre))
   return func()
  return wrappedfunc
 return timefun

@timefun_arg("itcast")
def foo():
 print("I am foo")

@timefun_arg("python")
def too():
 print("I am too")

foo()
sleep(2)
foo()

too()
sleep(2)
too()
可以理解为

foo()==timefun_arg("itcast")(foo)()

例6:类装饰器

装饰器函数其实是这样一个接口约束,它必须接受一个callable对象作为参数,然后返回一个callable对象。在Python中一般callable对象都是函数,但也有例外。只要某个对象重写了 call() 方法,那么这个对象就是callable的。

class Test():
 def __call__(self):
  print('call me!')

t = Test()
t() # call me
类装饰器demo


class Test(object):
 def __init__(self, func):
  print("---初始化---")
  print("func name is %s"%func.__name__)
  self.__func = func
 def __call__(self):
  print("---装饰器中的功能---")
  self.__func()

说明:

1. 当用Test来装作装饰器对test函数进行装饰的时候,首先会创建Test的实例对象,并且会把test这个函数名当做参数传递到init方法中
即在init方法中的func变量指向了test函数体
2. test函数相当于指向了用Test创建出来的实例对象
3. 当在使用test()进行调用时,就相当于让这个对象(),因此会调用这个对象的call方法
4. 为了能够在call方法中调用原来test指向的函数体,所以在init方法中就需要一个实例属性来保存这个函数体的引用
所以才有了self.func = func这句代码,从而在调用__call方法中能够调用到test之前的函数体

@Test 
def test(): 
print(“—-test—”) 
test() 
showpy()#如果把这句话注释,重新运行程序,依然会看到”?初始化?”

运行结果如下:

---初始化---
func name is test
---装饰器中的功能---
----test---

wraps函数

使用装饰器时,有一些细节需要被注意。例如,被装饰后的函数其实已经是另外一个函数了(函数名等函数属性会发生改变)。

添加后由于函数名和函数的doc发生了改变,对测试结果有一些影响,例如:

def note(func):
 "note function"
 def wrapper():
  "wrapper function"
  print('note something')
  return func()
 return wrapper

@note
def test():
 "test function"
 print('I am test')

test()
print(test.__doc__)

运行结果

note something
I am test
wrapper function

所以,Python的functools包中提供了一个叫wraps的装饰器来消除这样的副作用。例如:

import functools
def note(func):
 "note function"
 @functools.wraps(func)
 def wrapper():
  "wrapper function"
  print('note something')
  return func()
 return wrapper

@note
def test():
 "test function"
 print('I am test')

test()
print(test.__doc__)

运行结果

note something
I am test
test function

总结

以上就是本文关于Python中装饰器学习总结的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
Python编写屏幕截图程序方法
Feb 18 Python
Python中%r和%s的详解及区别
Mar 16 Python
python 读写中文json的实例详解
Oct 29 Python
Python装饰器用法示例小结
Feb 11 Python
python安装pil库方法及代码
Jun 25 Python
Python 分发包中添加额外文件的方法
Aug 16 Python
kafka-python 获取topic lag值方式
Dec 23 Python
Django用户身份验证完成示例代码
Apr 03 Python
python 使用while循环输出*组成的菱形实例
Apr 12 Python
python通过cython加密代码
Dec 11 Python
Python实现随机爬山算法
Jan 29 Python
总结Python常用的魔法方法
May 25 Python
Python基于hashlib模块的文件MD5一致性加密验证示例
Feb 10 #Python
Python中生成器和迭代器的区别详解
Feb 10 #Python
详解python中的线程
Feb 10 #Python
Odoo中如何生成唯一不重复的序列号详解
Feb 10 #Python
python TCP Socket的粘包和分包的处理详解
Feb 09 #Python
python实现Adapter模式实例代码
Feb 09 #Python
python实现Decorator模式实例代码
Feb 09 #Python
You might like
第1次亲密接触PHP5(2)
2006/10/09 PHP
php类
2006/11/27 PHP
php empty,isset,is_null判断比较(差异与异同)
2010/10/19 PHP
PHP学习散记_编码(json_encode 中文不显示)
2011/11/10 PHP
php删除字符串末尾子字符,删除开始字符,删除两端字符(实现代码)
2013/06/27 PHP
php第一次无法获取cookie问题处理
2014/12/15 PHP
php实现的简易扫雷游戏实例
2015/07/09 PHP
CodeIgniter自定义控制器MY_Controller用法分析
2016/01/20 PHP
php生成图片验证码的方法
2016/04/15 PHP
php中上传文件的的解决方案
2018/09/25 PHP
PHP fprintf()函数用法讲解
2019/02/16 PHP
laravel 解决后端无法获取到前端Post过来的值问题
2019/10/22 PHP
iframe子页面获取父页面元素的方法
2013/11/05 Javascript
js读取被点击次数的简单实例(从数据库中读取)
2014/03/07 Javascript
js改变鼠标的形状和样式的方法
2014/03/31 Javascript
js防止DIV布局滚动时闪动的解决方法
2014/10/30 Javascript
jquery滚动条插件slimScroll使用方法
2017/02/09 Javascript
微信小程序中实现一对多发消息详解及实例代码
2017/02/14 Javascript
浅谈jQuery的bind和unbind事件(绑定和解绑事件)
2017/03/02 Javascript
如何在Vue中使用CleaveJS格式化你的输入内容
2018/12/14 Javascript
MockJs结合json-server模拟后台数据
2020/08/26 Javascript
Vue中的循环及修改差值表达式的方法
2019/08/29 Javascript
pyshp创建shp点文件的方法
2018/12/31 Python
python实现网站微信登录的示例代码
2019/09/18 Python
TensorFlow tf.nn.conv2d实现卷积的方式
2020/01/03 Python
tensorflow入门:TFRecordDataset变长数据的batch读取详解
2020/01/20 Python
python 浮点数四舍五入需要注意的地方
2020/08/18 Python
python 多线程死锁问题的解决方案
2020/08/25 Python
pandas抽取行列数据的几种方法
2020/12/13 Python
基于HTML5的WebSocket的实例代码
2018/08/15 HTML / CSS
详解移动端html5页面长按实现高亮全选文本内容的兼容解决方案
2016/12/03 HTML / CSS
高中校园广播稿3篇
2014/09/29 职场文书
2015年监理工作总结范文
2015/04/07 职场文书
美丽心灵观后感
2015/06/01 职场文书
Redis中一个String类型引发的惨案
2021/07/25 Redis
利用Python实时获取steam特惠游戏数据
2022/06/25 Python