Python中的各种装饰器详解
Python装饰器,分两部分,一是装饰器本身的定义,一是被装饰器对象的定义。
一、函数式装饰器:装饰器本身是一个函数。
1.装饰函数:被装饰对象是一个函数
[1]装饰器无参数:
a.被装饰对象无参数:
>>> def test(func):
def _test():
print 'Call the function %s().'%func.func_name
return func()
return _test
>>> @test
def say():return 'hello world'
>>> say()
Call the function say().
'hello world'
>>>
以上是 Python中的各种装饰器详解 的全部内容, 来源链接: utcz.com/z/315317.html