摘要: 举个例子 def a_decorator(func): def wrapTheFunc(): print "before decorator" func() print "end decorator" return wrapTheFunc @a_decorator def a_func_need_d 阅读全文
posted @ 2019-07-23 23:32 jihite 阅读(178) 评论(0) 推荐(0) 编辑