Python装饰器(Decorator)简介
摘要:
Python有许多出色的语言特性,装饰器(Decorator)便是其中一朵奇葩。先来看看一段代码:def deco1(f): print 'decorate 1' return fdef deco2(f): print 'decorate 2' return f@deco1@... 阅读全文
posted @ 2015-04-24 21:47 索夫特威尔 阅读(811) 评论(0) 推荐(0) 编辑