您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章为大家展示了Python中装饰器的执行过程有哪些,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
第一种,装饰器本身不传参数,相对来说过程相对简单的
#!/usr/bin/python #coding: utf-8 # 装饰器其实就是对闭包的使用 def dec(fun): print("call dec") def in_dec(): print("call in_dec") fun() # 必须加上返回语句,不然的话会默认返回None return in_dec @dec def fun(): print("call fun") # 注意上面的返回语句加上还有不加上的时候这一句执行的区别 print(type(fun)) fun() ''' 通过观察输出结果可以知道函数执行的过程 call dec <type 'function'> call in_dec call fun 观察这几组数据以后,其实很容易发现,先执行装饰器,执行过装饰器以后,代码继续执行最后的print和fun()语句, 但是此时的fun函数其实是指向in_dec的,并不是@下面的fun函数,所以接下来执行的是in_dec,在in_dec中有一个fun()语句, 遇到这个以后才是执行@后面的fun()函数的。 '''
第二种,装饰器本身传参数,个人认为相对复杂,这个过程最好自己总结,有问题大家一块探讨
#!/usr/bin/python #coding: utf-8 import time, functools def performance(unit): print("call performance") def log_decrator(f): print("call log_decrator") @functools.wraps(f) def wrapper(*arg, **kw): print("call wrapper") t1 = time.time() t = f(*arg, **kw) t2 = time.time() tt = (t2 - t1) * 1000 if unit == "ms" else (t2 - t1) print 'call %s() in %f %s' % (f.__name__, tt, unit) return t return wrapper return log_decrator @performance("ms") def factorial(n): print("call factorial") return reduce(lambda x, y: x * y, range(1, 1 + n)) print(type(factorial)) #print(factorial.__name__) print(factorial(10)) '''接下来的是输出结果,通过结果其实很容易发现执行的过程 call performance call log_decrator 通过观察前两组的输出结果可以知道,先执行装饰器 <type 'function'> call wrapper call factorial call factorial() in 0.000000 ms 3628800 '''
上述内容就是Python中装饰器的执行过程有哪些,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。