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‘
>>>

b.被装饰对象有参数:

>>> class test(object):
	def __init__(self,func):
		self._func=func
	def __call__(self,*args,**kw):
		return self._func(*args,**kw)

>>> @test
def left(Str,Len):
	#The parameters of __call__ can be ‘(self,Str,Len)‘ in this case.
	return Str[:Len]

>>> left(‘hello world‘,5)
‘hello‘
>>>

[2]装饰器有参数

a.被装饰对象无参数:

>>> class test(object):
	def __init__(self,beforeinfo=‘Call function‘):
		self.beforeInfo=beforeinfo
	def __call__(self,func):
		def _call():
			print self.beforeInfo
			return func()
		return _call

>>> @test()
def say():
	return ‘hello world‘

>>> say()
Call function
‘hello world‘
>>>

或者:

>>> class test(object):
	def __init__(self,beforeinfo=‘Call function‘):
		self.beforeInfo=beforeinfo
	def __call__(self,func):
		self._func=func
		return self._call
	def _call(self):
		print self.beforeInfo
		return self._func()

>>> @test()
def say():
	return ‘hello world‘

>>> say()
Call function
‘hello world‘
>>>

b.被装饰对象有参数:

>>> class test(object):
	def __init__(self,beforeinfo=‘Call function‘):
		self.beforeInfo=beforeinfo
	def __call__(self,func):
		def _call(*args,**kw):
			print self.beforeInfo
			return func(*args,**kw)
		return _call

>>> @test()
def left(Str,Len):
	#The parameters of _call can be ‘(Str,Len)‘ in this case.
	return Str[:Len]

>>> left(‘hello world‘,5)
Call function
‘hello‘
>>>

或者:

>>> class test(object):
	def __init__(self,beforeinfo=‘Call function‘):
		self.beforeInfo=beforeinfo
	def __call__(self,func):
		self._func=func
		return self._call
	def _call(self,*args,**kw):
		print self.beforeInfo
		return self._func(*args,**kw)

>>> @test()
def left(Str,Len):
	#The parameters of _call can be ‘(self,Str,Len)‘ in this case.
	return Str[:Len]

>>> left(‘hello world‘,5)
Call function
‘hello‘
>>>

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

[1]装饰器无参数:

a.被装饰对象无参数:

>>> class test(object):
	def __init__(self,cls):
		self._cls=cls
	def __call__(self):
		return self._cls()

>>> @test
class sy(object):
	def __init__(self):
		self.value=32

>>> s=sy()
>>> s
<__main__.sy object at 0x0000000003AAFA20>
>>> s.value
32
>>>

b.被装饰对象有参数:

>>> class test(object):
	def __init__(self,cls):
		self._cls=cls
	def __call__(self,*args,**kw):
		return self._cls(*args,**kw)

>>> @test
class sy(object):
	def __init__(self,value):
		#The parameters of __call__ can be ‘(self,value)‘ in this case.
		self.value=value

>>> s=sy(‘hello world‘)
>>> s
<__main__.sy object at 0x0000000003AAFA20>
>>> s.value
‘hello world‘
>>>

[2]装饰器有参数:

a.被装饰对象无参数:

>>> class test(object):
	def __init__(self,printValue=False):
		self._printValue=printValue
	def __call__(self,cls):
		def _call():
			obj=cls()
			if self._printValue:
				print ‘value = %r‘%obj.value
			return obj
		return _call

>>> @test(True)
class sy(object):
	def __init__(self):
		self.value=32

>>> s=sy()
value = 32
>>> s
<__main__.sy object at 0x0000000003AB50B8>
>>> s.value
32
>>>

b.被装饰对象有参数:

>>> class test(object):
	def __init__(self,printValue=False):
		self._printValue=printValue
	def __call__(self,cls):
		def _call(*args,**kw):
			obj=cls(*args,**kw)
			if self._printValue:
				print ‘value = %r‘%obj.value
			return obj
		return _call

>>> @test(True)
class sy(object):
	def __init__(self,value):
		#The parameters of _call can be ‘(value)‘ in this case.
		self.value=value

>>> s=sy(‘hello world‘)
value = ‘hello world‘
>>> s
<__main__.sy object at 0x0000000003AB5588>
>>> s.value
‘hello world‘
>>>

总结:【1】@decorator后面不带括号时(也即装饰器无参数时),效果就相当于先定义func或cls,而后执行赋值操作func=decorator(func)或cls=decorator(cls);

【2】@decorator后面带括号时(也即装饰器有参数时),效果就相当于先定义func或cls,而后执行赋值操作 func=decorator(decoratorArgs)(func)或cls=decorator(decoratorArgs)(cls);

【3】如上将func或cls重新赋值后,此时的func或cls也不再是原来定义时的func或cls,而是一个可执行体,你只需要传入参数就可调用,func(args)=>返回值或者输出,cls(args)=>object of cls;

【4】最后通过赋值返回的执行体是多样的,可以是闭包,也可以是外部函数;当被装饰的是一个类时,还可以是类内部方法,函数;

【5】另外要想真正了解装饰器,一定要了解func.func_code.co_varnames,func.func_defaults,通过它们你可以以func的定义之外,还原func的参数列表;另外关键字参数是因为调用而出现的,而不是因为func的定义,func的定义中的用等号连接的只是有默认值的参数,它们并不一定会成为关键字参数,因为你仍然可以按照位置来传递它们。

时间: 2024-10-12 18:23:14

Python各式装饰器的相关文章

尝试自己的Perl语言的包 TCP协议的再包装起到类似python语言装饰器的效果

#!/usr/bin/perl # Filename: BuildSocketTCP.pm # #   Copyright 2012 Axxeo GmbH #   Licensed under the Apache License, Version 2.0 (the "License"); #   you may not use this file except in compliance with the License. #   You may obtain a copy of t

尝试自己的Perl语言的包 UDP协议的再包装起到类似python语言装饰器的效果

#!/usr/bin/perl # Filename: BuildSocketUDP.pm # #   Copyright 2012 Axxeo GmbH #   Licensed under the Apache License, Version 2.0 (the "License"); #   you may not use this file except in compliance with the License. #   You may obtain a copy of t

python函数装饰器

学习装饰器前提需要了解高阶函数,函数嵌套,函数闭包 python函数装饰器,顾名思义就是装饰函数,为函数添加新功能的的一种方式. 为什么要使用装饰器呢? 因为函数在运行时,如果不使用装饰器对函数进行功能添加,需要修改函数源代码,这样修改无疑会增加程序的冗余和复杂性,也不便于程序员对其进行修改.使用装饰器,可以在不改变函数源代码和调用方式的前提下,使用语法糖@装饰器,对函数功能进行添加. 装饰器本质上就是一个函数. 我们使用一个简单的例子来实现: import time #这是一个装饰器函数名为t

Python之装饰器、迭代器和生成器

在学习python的时候,三大“名器”对没有其他语言编程经验的人来说,应该算是一个小难点,本次博客就博主自己对装饰器.迭代器和生成器理解进行解释. 为什么要使用装饰器 什么是装饰器?“装饰”从字面意思来谁就是对特定的建筑物内按照一定的思路和风格进行美化的一种行为,所谓“器”就是工具,对于python来说装饰器就是能够在不修改原始的代码情况下给其添加新的功能,比如一款软件上线之后,我们需要在不修改源代码和不修改被调用的方式的情况下还能为期添加新的功能,在python种就可以用装饰器来实现,同样在写

python之装饰器 实例

=====================================写法1========================== import time def timer(func):     def deco():         start_time = time.time()         func()         stop_time = time.time()         print('the func run time is %s' %(stop_time - star

【转】详解Python的装饰器

原文链接:http://python.jobbole.com/86717/ Python中的装饰器是你进入Python大门的一道坎,不管你跨不跨过去它都在那里. 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数. def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __name__ == '__main__':

如何用python的装饰器定义一个像C++一样的强类型函数

Python作为一个动态的脚本语言,其函数在定义时是不需要指出参数的类型,也不需要指出函数是否有返回值.本文将介绍如何使用python的装饰器来定义一个像C++那样的强类型函数.接下去,先介绍python3中关于函数的定义. 0. python3中的函数定义 举个例子来说吧,比如如下的函数定义: 1 def fun(a:int, b=1, *c, d, e=2, **f) -> str: 2 pass 这里主要是说几点与python2中不同的点. 1)分号后面表示参数的annotation,这个

Python 函数装饰器入门

原文链接: --> A guide to Python's function decorators Python功能强劲,语法表现力强,尤其装饰器深深的吸引着我.在设计模式中,装饰器可以在不使用子类的情况下,动态的改变函数,方法以及类的功能.这个功能非常有用,特别在你想扩展函数的功能同时又不想改变原有的函数.的确,我们任意的实现装饰器设计模式,但是,python通过提供简单的语法和特性让装饰器的实现变的如此简单. 在本文中,我将用一组例子来深入浅入python 函数装饰器的功能,所有的例子都是在

关于Python的装饰器(1)

Python的装饰器的概念,一直有点微妙.之前在StackOverflow上看过一篇感觉说明的很清楚的介绍: *A decorator must accept a function as an argument 参考地址: http://stackoverflow.com/questions/739654/how-can-i-make-a-chain-of-function-decorators-in-python/1594484#1594484 http://stackoverflow.com