what is closure and its correspondence example ?
I have research a lot and could not understand. Please explain in generic programming language concept aspect and specific programming language aspect.
Please help.
Thanks.
|
what is closure and its correspondence example ? I have research a lot and could not understand. Please explain in generic programming language concept aspect and specific programming language aspect. Please help. Thanks. |
|||
|
|
Here is how I think of a closure.... A function object consists of two things. The first thing is the code for the function, the second is the scope in which it executes. In a closure, the scope in which the function executes and the code are detached from each other. The same code can execute in a variety of scopes. If this were allowed in a completely unrestricted way it would result in great confusion. Even when it's something as loose as dynamic scoping (the function inherits the scope of the place where it was called from) it becomes very confusing. Closures are a convenient way of specifying scope rules that make a lot of sense because they only require reading the code instead of tracing it. In a closure, the function gets the scope of where it was declared. If it was declared while executing another function, it gets the scope of that specific instance of the function's stack. This is a lot simpler and easier to understand than being able to give the closure and arbitrary scope, or dynamic scoping. Here is an example of a trivial closure in Python:
Here the function Here is a not-so-trivial, but still simple closure in Python:
Calling When When |
||||
|
|
|
A closure is basically a function B nested inside a function A that can access A's local variables:
If you come from a C++ background, this is rather hard to digest. When we try to call the function returned by A, what The answer is that In a more general sense, a closure is a function bound to some data. In a language without closures like C, every program has a fixed number of functions. With closures, you can, in a sense, "create functions" by binding them to dynamic data. Of course, nobody's stopping you from emulating closures in C, but it can be a pain sometimes. Closures are really useful. For instance, suppose we want to implement our own "for loop":
Being allowed to access outside variables without doing a bunch of extra nonsense keeps code nice and simple. Without closures, you might have to pass a context variable to the
Another example: suppose we want to register a callback in jQuery, but it may be executed long after the function and its caller and its caller's caller are done running:
If JavaScript were more like C++ (before C++0x), that |
|||||||||||
|
|
If you want an example on closures i suggest you to check the book Dive into Python: Chapter 6 - Closures & Generators The book its open&free and you can download it at---> http://diveintopython3.org/ The example it's interesting,clear and gradually takes a more advanced approach. For first exposure its great i think. Take a look at it there is no reason to reproduce it here as long as you can simply download it or read it online. |
|||
|
|