Python装饰器 name binding
摘要:
python 装饰器 函数或方法 @decorate def fun(a,b): ... fun(1,2) 时即 fun=decorate(fun) fun(1,2) 若decorate有参数则相当于 fun=decorate(参数)(fun) 若装饰类 则一样的,更新方法、属性。 同样的是name 阅读全文
posted @ 2018-05-27 16:14 BioinformaticsMaster 阅读(257) 评论(0) 推荐(0) 编辑