python装饰器(备忘)

Posted Cactus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python装饰器(备忘)相关的知识,希望对你有一定的参考价值。

# 装饰器decorator

def deco1(fun):
def PRINT(*args,**kwargs):
print(‘------deco1------‘)
fun(*args,**kwargs)
print(‘-----deco1 end------‘)
return PRINT

def deco2(fun):
def PRINT(*args,**kwargs):
print(‘------deco2------‘)
fun(*args,**kwargs)
print(‘-----deco2 end------‘)
return PRINT


@deco2
@deco1 #从下往上装饰
def fun(STR):
print("fun({})".format(STR))

fun("略略略")

‘‘‘

------deco2------
------deco1------
fun(略略略)
-----deco1 end------
-----deco2 end------

‘‘‘





















以上是关于python装饰器(备忘)的主要内容,如果未能解决你的问题,请参考以下文章

Python 装饰器自理解备忘

Python装饰器

Python 装饰器和装饰器模式有啥区别?

python 装饰器:装饰器实例内置装饰器

python 装饰器:装饰器实例内置装饰器

python 装饰器:装饰器实例类装饰器(装饰函数)