实例讲解Python的函数闭包使用中应注意的问题
昨天正当我用十成一阳指功力戳键盘、昏天暗地coding的时候,正好被人问了一个问题,差点没收好功,洪荒之力侧漏震伤桌边的人,废话不多说,先上栗子(精简版,只为说明问题):
fromfunctoolsimportwraps fromtimeimportsleep defretry(attempts=3,wait=2): ifattempts<0orattempts>5: retry_times=3 else: retry_times=attempts ifwait<0orwait>5: retry_wait=2 else: retry_wait=after defretry_decorator(func): @wraps(func) defwrapped_function(*args,**kwargs): whileretry_times>0: try: returnfunc(*args,**kwargs) except: sleep(retry_wait) retry_times-=1 returnwrapped_function returnretry_decorator
简易版的retry装饰器,需要的变量被闭包完美捕捉,逻辑也挺简单明了。问的人说逻辑看着挺正常的,但就是一直报变量retry_times找不到(unresolvedreference)的错误提示。
没错仔细捋一下,这是一道送分题呢:闭包捕获的变量(retry_times,retry_wait)相当时引用的retry函数的局部变量,当在wrapped_function的局部作用于里面操作不可变类型的数据时,会生成新的局部变量,但是新生成的局部变量retry_times在使用时还没来得及初始化,因此会提示找不到变量;retry_wait相反能被好好的使用到。
python是duck-typing的编程语言,就算有warning照样跑,写个简单到极限的的函数,用一下装饰器,在wrapped_function逻辑里打个断点看一下各个变量的值也是很快能找到问题的(直接跑也能看到错误:UnboundLocalError:localvariable'retry_attempts'referencedbeforeassignment,至少比warningmsg有用):
@retry(7,8) deftest(): print23333 raiseException('Callmeexception2333.') if__name__=='__main__': test() output:UnboundLocalError:localvariable'retry_times'referencedbeforeassignment
要解决这种问题也好办,用一个可变的容器把要用的不可变类型的数据包装一下就行了(说个好久没写C#代码记不太清楚完全不负责任的题外话,就像在C#.net里面,碰到闭包的时候,会自动生成一个混淆过名字的类然后把要被捕捉的值当作类的属性存着,这样在使用的时候就能轻松get,著名的老赵好像有一篇文章讲LazyEvaluation的好像涉及到这个话题):
defretry(attempts=3,wait=2): temp_dict={ 'retry_times':3ifattempts<0orattempts>5elseattempts, 'retry_wait':2ifwait<0orwait>5elsewait } defretry_decorate(fn): @wraps(fn) defwrapped_function(*args,**kwargs): printid(temp_dict),temp_dict whiletemp_dict.get('retry_times')>0: try: returnfn(*args,**kwargs) except: sleep(temp_dict.get('retry_wait')) temp_dict['retry_times']=temp_dict.get('retry_times')-1 printid(temp_dict),temp_dict printid(temp_dict),temp_dict returnwrapped_function returnretry_decorate @retry(7,8) deftest(): print23333 raiseException('Callmeexception2333.') if__name__=='__main__': test()
输出:
4405472064{'retry_wait':2,'retry_times':3} 4405472064{'retry_wait':2,'retry_times':3} 23333 4405472064{'retry_wait':2,'retry_times':2} 23333 4405472064{'retry_wait':2,'retry_times':1} 23333 4405472064{'retry_wait':2,'retry_times':0}
从output中可以看到,用dict包装后,程序能够正常的工作,和预期的一致,其实我们也可以从函数的闭包的值再次确认:
>>>test.func_closure[1].cell_contents {'retry_wait':2,'retry_times':2}
我是结尾,PEACE!