如何访问闭包内的外部函数变量(python 2.6)?
来自 wikipedia
我需要以类似的方式访问外部函数变量使用 python 3.x 中的“nonlocal”关键字。 python 2.6 有什么方法可以做到这一点吗? (不一定使用nonlocal关键字)
From wikipedia
I need to access outer functions variables in a similar manner as using the 'nonlocal' keyword from python 3.x. Is there some way to do that in python 2.6? (Not necessarily using the nonlocal keyword)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,我总是使用辅助对象:
当您启动一个应该向外部函数作用域写入值的新线程时,这也会派上用场。在这种情况下,
helper
将作为参数传递给innerFunction
(线程的函数)。I always use helper objects in that case:
This also comes in handy when you start a new thread that should write a value to the outer function scope. In that case,
helper
would be passed as an argument toinnerFunction
(the thread's function).