这篇文章主要为大家详细介绍了Python的装饰器功能实例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
# 来自www.q1010.com
@deco1(deco_arg)
@deco2
def func(): pass
相当于
# 来自www.q1010.com
func = deco1(deco_arg)(deco2(func))
Demo如下:
# 来自www.q1010.com
# -*-coding:utf-8 -*-
def decorator(str):
print str
def retfn(fn):
def retfn(*arg):
print '已装饰' # 装饰
return fn(*arg) # 调用原始函数
return retfn
return retfn
@decorator("实例化装饰器")
def test(str0, str1):
print str0, str1
test('Hello', 'world');
本文来自:http://www.q1010.com/181/1694-0.html
注:关于Python的装饰器功能实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:装饰器
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。