本文对装饰器做了一个极其简单的解释图例,并用类定义一个装饰器;让读者在5分钟之内永远搞懂装饰器,不迷路。
我们将单独的函数比喻成一条路径,从A到B; 如图:
通过定义装饰器,将路径AB内嵌到一个更大程序EF中,使得原路径AB改变成,EABF。这样做的好处是:在调用AB段之前的EA段可以夹带“私货”,在调用AB之后的BF段也可以夹带“私货”。仿佛给程序AB“穿鞋”-“戴帽”进行了某种装饰。
class myDecorator(object): def __init__(self, f): print( "inside myDecorator.__init__()" ) f() # Prove that function definition has completed def __call__(self): print("inside myDecorator.__call__()") @myDecorator def aFunction(): print( "inside aFunction()" ) print( "Finished decorating aFunction()" ) aFunction()
结果:
inside myDecorator.__init__()
inside aFunction()
Finished decorating aFunction()
inside myDecorator.__call__()