python 函数装饰器
摘要:
# 使用一个函数来装饰另一个函数,不使用@ def a_new_decorator(a_func): def wrapTheFunc(): print("Do sth. before a_func()") a_func() print("Do sth. after a_func()") return 阅读全文
posted @ 2021-04-07 11:15 Karlkiller 阅读(51) 评论(0) 推荐(0) 编辑