摘要: Python中的装饰器的概念经常会让人搞得一头雾水,所以今天就好好来分析一下python中的装饰器.先看一个简单的装饰器用法: 1 def decorator(func): 2 print("this is wrapper") 3 4 def wrapper(): 5 ... 阅读全文
posted @ 2014-10-22 21:33 core! 阅读(757) 评论(0) 推荐(0) 编辑