Closures in Python

December 2006

From the newsgroup:

Q. I don’t understand why while a nested function perfectly matches the definition of closure, it is not closure simply because it is not used by external world.

Like so many other computing terms, the word “closure” is used in different ways by different people.

Strictly speaking, a closure is simply a function with free variables, where the bindings for all such variables are known in advance. Some early languages didn’t have “closed” functions; the bindings for free variables were left open, and was determined at runtime. And languages that had both “open” and “closed” functions needed some way to distinguish between the two, so people started referring to the latter as “closures”.

But in Python, as well as in most other modern languages, all functions are “closed” — i.e. there are no “open” free variables — so the use of the term has morphed from “a function for which all free variables have a known binding” to “a function that can refer to environments that are no longer active” (such as the local namespace of an outer function, even after that function has returned).

def outer_function():
    outer_function_local_var = 'out_value'
    def function():
        print(outer_function_local_var) # 'out_value'
    return function

outer_function()() #print 'out_value'

And since that is somewhat difficult to implement, and programmers don’t like to hide things that are hard to implement, people still like to use the term to distinguish between closed functions of kind 1 and closed functions of kind 2. As in this [newsgroup] thread, they sometimes argue that when you’re using a closed function of kind 2 in a specific way, it’s not quite as much of a closure as when you use it in another way. Heck, some people even argue that languages that don’t support closed functions of kind 3 (a kind that Python currently doesn’t support) don’t really have closures at all.

But as a language user, you can actually forget about all this — all you need to know is that in Python, all functions are closed, and free variables bind to variable names in lexically nested outer scopes.

Reference: http://effbot.org/zone/closure.htm

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 渺渺天际孤炊灯,四野寂寥淡云红。 寒鸦枯枝啼血处,啸啸北风伴悲声。一滴寒水封万里,冻破红尘碎梦缝。 寡人孤家苍生笑...
    南疯向北_9510阅读 255评论 0 0
  • 柔荑花
    一枚冰儿阅读 922评论 0 1
  • 蓦然回首,时间已经悄无声息的从我们的身体上踏了过去。成长,这个简单而又复杂的名词,从此就在我的生命里被铭记了。小时...
    16facd06ca2f阅读 573评论 0 1
  • 没错,他是个穷小子。 可越是这样,他就越难能可贵。 他是那么的努力,不管是学习考试还是追女生。 大学的国家级奖学金...
    黄落落的客厅阅读 179评论 0 0