装饰器
Posted olivertian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器相关的知识,希望对你有一定的参考价值。
def makeBold(fun): print("***** 1 *******") def wrapped(): print("------ 1 ------") return "<b> " + fun() + " <\b>" return wrapped def makeItalic(fun): print("***** 2 *******") def wrapped(): print("------- 2 ------") return "<i> " + fun() + " <i>" return wrapped @makeBold @makeItalic def fun(): return "hello world" print(fun())
输出:
***** 2 *******
***** 1 *******
------ 1 ------
------- 2 ------
<b> <i> hello world <i> <>
由此可见,解释器解释过程为:执行到@makeBold时,发现底下仍然是个装饰器,于是跳过先执行@makeItalic,等完成@makeItalic对fun的装饰(结果是返回一个函数),再返过去用@makeBold装饰第一步返回的函数
以上是关于装饰器的主要内容,如果未能解决你的问题,请参考以下文章