python的装饰器详解,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’

b.被装饰对象有参数:

代码如下:

def test(func):

def _test(*args,**kw):

print ‘Call the function %s().’%func.func_name

return func(*args,**kw)

return _test

@test

def left(Str,Len):

#The parameters of _test can be ‘(Str,Len)’ in this case.

return Str[:Len]

left(‘hello world’,5)

Call the function left().

‘hello’

[2]装饰器有参数:

a.被装饰对象无参数:

代码如下:

def test(printResult=False):

def _test(func):

def __test():

print ‘Call the function %s().’%func.func_name

if printResult:

print func()

else:

return func()

return __test

return _test

@test(True)

def say():return ‘hello world’

say()

Call the function say().

hello world

@test(False)

def say():return ‘hello world’

say()

Call the function say().

‘hello world’

@test()

def say():return ‘hello world’

say()

Call the function say().

‘hello world’

@test

def say():return ‘hello world’

say()

Traceback (most recent call last):

File “pyshell#224”, line 1, in module

say()

TypeError: _test() takes exactly 1 argument (0 given)

由上面这段代码中的最后两个例子可知:当装饰器有参数时,即使你启用装饰器的默认参数,不另外传递新值进去,也必须有一对括号,否则编译器会直接将func传递给test(),而不是传递给_test()

b.被装饰对象有参数:

代码如下:

def test(printResult=False):

def _test(func):

def __test(*args,**kw):

print ‘Call the function %s().’%func.func_name

if printResult:

print func(*args,**kw)

else:

return func(*args,**kw)

return __test

return _test

@test()

def left(Str,Len):

#The parameters of __test can be ‘(Str,Len)’ in this case.

return Str[:Len]

left(‘hello world’,5)

Call the function left().

‘hello’

@test(True)

def left(Str,Len):

#The parameters of __test can be ‘(Str,Len)’ in this case.

return Str[:Len]

left(‘hello world’,5)

Call the function left().

hello

2.装饰类:被装饰的对象是一个类

[1]装饰器无参数:

a.被装饰对象无参数:

代码如下:

def test(cls):

def _test():

clsName=re.findall(‘(\w+)’,repr(cls))[-1]

print ‘Call %s.__init().’%clsName

return cls()

return _test

@test

class sy(object):

value=32

s=sy()

Call sy.__init().

s

__main__.sy object at 0x0000000002C3E390

s.value

32

b.被装饰对象有参数:

代码如下:

def test(cls):

def _test(*args,**kw):

clsName=re.findall(‘(\w+)’,repr(cls))[-1]

print ‘Call %s.__init().’%clsName

return cls(*args,**kw)

return _test

@test

class sy(object):

def __init__(self,value):

#The parameters of _test can be ‘(value)’ in this case.

self.value=value

s=sy(‘hello world’)

Call sy.__init().

s

__main__.sy object at 0x0000000003AF7748

s.value

‘hello world’

[2]装饰器有参数:

a.被装饰对象无参数:

代码如下:

def test(printValue=True):

def _test(cls):

def __test():

clsName=re.findall(‘(\w+)’,repr(cls))[-1]

print ‘Call %s.__init().’%clsName

obj=cls()

if printValue:

print ‘value = %r’%obj.value

return obj

return __test

return _test

@test()

class sy(object):

def __init__(self):

self.value=32

s=sy()

Call sy.__init().

value = 32

@test(False)

class sy(object):

def __init__(self):

self.value=32

s=sy()

Call sy.__init().

b.被装饰对象有参数:

代码如下:

def test(printValue=True):

def _test(cls):

def __test(*args,**kw):

clsName=re.findall(‘(\w+)’,repr(cls))[-1]

print ‘Call %s.__init().’%clsName

obj=cls(*args,**kw)

if printValue:

print ‘value = %r’%obj.value

return obj

return __test

return _test

@test()

class sy(object):

def __init__(self,value):

self.value=value

s=sy(‘hello world’)

Call sy.__init().

value = ‘hello world’

@test(False)

class sy(object):

def __init__(self,value):

self.value=value

s=sy(‘hello world’)

Call sy.__init().

二、类式装饰器:装饰器本身是一个类,借用__init__()和__call__()来实现职能

1.装饰函数:被装饰对象是一个函数

[1]装饰器无参数:

a.被装饰对象无参数:

代码如下:

class test(object):

def __init__(self,func):

self._func=func

def __call__(self):

return self._func()

@test

def say():

return ‘hello world’

say()

‘hello world’

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值