def identify(f):
#A#
return f
然后就可以像下面这样使用这个装饰器: @identify
def foo():
return 'bar'
它和下面的过程类似: def foo():
return 'bar'
foo = identify(foo)
在#A#
处,可以把一批函数都需要进行的操作都放在这,再用装饰器的形式来装饰那批函数,来简化代码。_functions = {}
def register(f):
global _functions
_functions[f.__name__] = foo
return foo
##使用##
@register
def foo():
return 'bar'
import functools
import inspect
def check_is_admin(f):
@functools.wraps(f)
#使用functools使返回的wrapper函数的属性与原函数一致
def wrapper(*args, **kwargs):
#args得到函数传参
func_args = inspect.getcallargs(f, *args, **kwargs)
#返回一个将参数名字和值作为键值对的字典,不论参数的传递方式
if func_args.get('username') != 'admin':
raise Exception("This user is not allowed to get food")
return f(*args, **kwargs)
#return时执行函数,返回函数返回值,有点混,注意
return wrapper
##使用##
@check_is_admin
def get_food(username, type='chocolate'):
return type + " nom nom nom!"
@staticmethod
@classmethod
第一个参数cls
import abc; @abc.abstractmethod
2024 - 快车库 - 我的知识库 重庆启连科技有限公司 渝ICP备16002641号-10
企客连连 表单助手 企服开发 榜单123