A closure is a first-class function that refers to (closes over) variables from the scope in which it was defined. If the closure still exists after its defining scope ends, the variables it closes over will continue to exist as well.

learn more… | top users | synonyms (1)

449
votes
19answers
57k views

How do JavaScript closures work?

Like the old Albert said: "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well, I tried to explain JavaScript closures to a 27-year old friend and completely ...
138
votes
15answers
29k views

What's the nearest substitute for a function pointer in Java?

I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This is a perfect ...
115
votes
2answers
2k views

Is this object-lifetime-extending-closure a C# compiler bug?

I was answering a question about the possibility of closures (legitimately) extending object-lifetimes when I ran into some extremely curious code-gen on the part of the C# compiler (4.0 if that ...
87
votes
1answer
18k views

Access to Modified Closure

string [] files = new string[2]; files[0] = "ThinkFarAhead.Example.Settings.Configuration_Local.xml"; files[1] = "ThinkFarAhead.Example.Settings.Configuration_Global.xml"; //Resharper ...
61
votes
5answers
5k views

What is the difference between a 'closure' and a 'lambda'?

Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused. And now that we're here, how do they differ from a regular function?
54
votes
1answer
6k views

Access to Modified Closure (2)

This is an extension of question from Access to Modified Closure. I just want to verify if the following is actually safe enough for production use. List<string> lists = new ...
50
votes
8answers
6k views

What are 'closures' in .NET?

What is a 'closure'? Do we have them in .NET? If they do exist in .NET, could you please provide a code snippet (preferably in C#) explaining it? EDIT: I went through Jon Skeet's article to ...
40
votes
7answers
3k views

C# - The foreach identifier and closures

In the two following snippets, is the first one safe or must you do the second one? By safe I mean is each thread guaranteed to call the method on the Foo from the same loop iteration in which the ...
38
votes
6answers
4k views

Javascript closure inside loops - simple practical example

Closures are one of those things which has been discussed a lot on SO, but this situation pops up a lot for me and I'm always left scratching my head what to do. var funcs = {}; for (var i = 0; i ...
38
votes
9answers
10k views

Lexical closures in Python

While I was investigating a problem I had with lexical closures in Javascript code, I came along this problem in Python: flist = [] for i in xrange(3): def func(x): return x * i ...
34
votes
4answers
8k views

JavaScript function aliasing doesn't seem to work

I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I couldn't seem to get it to work in either Firefox 3 or 3.5beta4, or Google Chrome, ...
27
votes
3answers
5k views

In Php 5.3.0 what is the Function “Use” Identifier ? Should a sane programmer use it?

I'm checking out some php 5.3.0 features and ran across some code on the site that looks quite funny: public function getTotal($tax) { $total = 0.00; $callback = /* This line here: ...
25
votes
10answers
4k views

Function pointers, Closures, and Lambda

I am just now learning about function pointers and as I was readying the K&R chapter on the subject the first thing that hit me was, "Hey, this is kinda like a closure." I knew this assumption is ...
25
votes
17answers
3k views

Does Java need closures?

I've been reading a lot lately about the next release of Java possibly supporting closures. I feel like I have a pretty firm grasp on what closures are, but I can't think of a solid example of how ...
25
votes
7answers
2k views

Can you explain closures (as they relate to Python)?

I've been reading a lot about closures and I think I understand them, but without clouding the picture for myself and others, I was wondering if anyone can explain closures as succinctly and clearly ...
24
votes
5answers
4k views

C# Captured Variable In Loop

I met a interesting issue about C#. I have code like below List<Func<int>> actions = new List<Func<int>>(); int variable = 0; while (variable < 5) { actions.Add(() ...
23
votes
5answers
2k views

What are good JavaScript OOP resources?

JavaScript is a lightweight and powerful language, but it's often misunderstood and hard to learn (especially about its object oriented programming). Here are what I found: Books JavaScript: The ...
23
votes
9answers
9k views

Javascript + Firebug : “cannot access optimized closure” What does it mean?

I just got the following error in a piece of javascript (in Firefox 3.5, with Firebug running) cannot access optimized closure I know, superficially, what caused the error. I had a line ...
22
votes
3answers
581 views

Javascript closures vs PHP closures, what's the difference?

What are the differences between closures in JS and closures in PHP? Do they pretty much work the same way? Are there any caveats to be aware of when writing closures in PHP?
22
votes
2answers
351 views

How are closures and scopes represented at run time in JavaScript

This is mostly an out-of-curiosity question. Consider the following functions var closure ; function f0() { var x = new BigObject() ; var y = 0 ; closure = function(){ return 7; } ; } ...
22
votes
8answers
3k views

When to use closure?

I have seen samples of closure from - http://stackoverflow.com/questions/36636/what-is-a-closure Can anyone provide simple example of when to use closure? Specifically, scenarios in which closure ...
21
votes
2answers
541 views

How has Scala solved the problems which Java's closures currently have?

Some time ago Oracle decided that adding Closures to Java 8 would be an good idea. I wonder how design problems are solved there in comparison to Scala, which had closures since day one. Citing the ...
20
votes
10answers
879 views

Why use anonymous function? [closed]

Possible Duplicate: How do you use anonymous functions in PHP? Why should i use an anonymous function? I mean, what's the real deal using it? I just don't really get this. I mean, you use ...
20
votes
5answers
903 views

Complexity of Java 7's current Lambda proposal? (August 2010)

Some people say that every programming language has its "complexity budget" which it can use to accomplish its purpose. But if the complexity budget is depleted, every minor change becomes ...
20
votes
4answers
2k views

How do I pass the value (not the reference) of a JS variable to a function?

Here is a simplified version of something I'm trying to run: for (var i = 0; i < results.length; i++) { marker = results[i]; google.maps.event.addListener(marker, 'click', function() { ...
20
votes
9answers
8k views

Closures in Java 7

I have heard that closures could be introduced in the next Java standard that is scheduled to be released somewhere around next summer. What would this syntax look like? I read somewhere that ...
19
votes
2answers
453 views

How do closures work behind the scenes? (C#)

I feel I have a pretty decent understanding of closures, how to use them, and when they can be useful. But what I don't understand is how they actually work behind the scenes in memory. Some example ...
19
votes
7answers
2k views

What limitations have closures in Python compared to language X closures?

Where X is any programming language (C#, Javascript, Lisp, Perl, Ruby, Scheme, etc) which supports some flavour of closures. Some limitations are mentioned in the Closures in Python (compared to ...
18
votes
2answers
1k views

Compatibility between Scala closures and Java 8 closures

After reading some OpenJDK mailinglist entries, it seems that the Oracle developers are currently further removing things from the closure proposal, because earlier design mistakes in the Java ...
18
votes
7answers
932 views

Read/Write Python Closures

Closures are an incredibly useful language feature. They let us do clever things that would otherwise take a lot of code, and often enable us to write code that is more elegant and more clear. In ...
18
votes
6answers
3k views

Closures in PHP… what, precisely, are they and when would you need to use them?

So I'm programming along in a nice, up to date, object oriented fashion. I regularly make use of the various aspects of OO programming that PHP implements but I am wondering when might I need to use ...
17
votes
3answers
404 views

Self destructing Javascript function - How does it work?

So I found this piece of code and it obviously works (as it has been in production for years): window[someMethod] = function (tmp) { callback({prop:"val"}, tmp); // Garbage collect ...
17
votes
6answers
870 views

What exactly does “closure” refer to in JavaScript?

I understand what closures are, but I am having some trouble grokking exactly what the term closure refers to. I have seen the term used in many websites, but rarely do they agree on the actual ...
17
votes
7answers
2k views

Can someone explain Anonymous methods to me?

Delphi 2009, among some cool stuff, has also just got Anonymous methods. I've seen the examples, and the blog posts regarding anonymous methods, but I don't get them yet. Can someone explain why I ...
17
votes
3answers
6k views

Best pattern for simulating “continue” in Groovy closure

It seems that Groovy does not support break and continue from within a closure. What is the best way to simulate this? revs.eachLine { line -> if (line ==~ /-{28}/) { // continue ...
17
votes
6answers
2k views

What’s the current state of closures in Java?

Does anybody know, if closures will be in Java 7?
16
votes
2answers
2k views

PHP 5.4 - 'closure $this support'

I see that the new planned features for PHP 5.4 are: traits, array dereferencing, a JsonSerializable interface and something referred to as 'closure $this support' ...
16
votes
3answers
2k views

Scala advantages after Java having closures

With closures being added to Java, what is Scala's advantage over Java as a language choice? Can someone elaborate on any advantages?
16
votes
9answers
628 views

What is a practical use for a closure in JavaScript?

I'm trying my hardest to wrap my head around JavaScript closures. I get that by returning an inner function, it will have access to any variable defined in its immediate parent. Where would this be ...
16
votes
6answers
2k views

Is there something like LINQ for Java?

Started to learn LINQ with C#. Especially LINQ to Objects and LINQ to XML. I really enjoy the power of LINQ. I learned that there is something called JLINQ a Jscript implementation. Also (as Catbert ...
15
votes
5answers
230 views

Recursive closures in JavaScript

Let's say I have something like function animate(param) { // ... if (param < 10) setTimeout(function () { animate(param + 1) }, 100); } animate(0); Does this mean each instance ...
15
votes
11answers
388 views

JavaScript pass scope to another function

Is it possible to somehow pass the scope of a function to another? For example, function a(){ var x = 5; var obj = {..}; b(<my-scope>); } function b(){ //access x or obj.... } I ...
15
votes
3answers
247 views

Classes or closures for simple things in Python

I would like to know more about the functions "with memory" implemented as classes vs closures. Consider the (very) simple example: def constant(value): def _inner(): return value ...
15
votes
4answers
398 views

Why does capturing a mutable struct variable inside a closure within a using statement change its local behavior?

Update: Well, now I've gone and done it: I filed a bug report with Microsoft about this, as I seriously doubt that it is correct behavior. That said, I'm still not 100% sure what to believe regarding ...
15
votes
6answers
291 views

Are closures in javascript recompiled

Let's say we have this code (forget about prototypes for a moment): function A(){ var foo = 1; this.method = function(){ return foo; } } var a = new A(); is the inner function recompiled ...
15
votes
6answers
888 views

“Closures are poor man's objects and vice versa” - What does this mean?

Closures are poor man's objects and vice versa. I have seen this statement at many places on the web (including SO) but I don't quite understand what it means. Could someone please explain what ...
15
votes
5answers
2k views

Access outside variable in loop from Javascript closure

See: for (var i in this.items) { var item = this.items[i]; $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" ...
14
votes
1answer
193 views

Is there a Pythonic way to close over a loop variable?

I just ran across Eric Lippert's Closing over the loop variable considered harmful via SO, and, after experimenting, realized that the same problem exists (and is even harder to get around) in Python. ...
14
votes
2answers
1k views

Why not .NET-style delegates rather than closures in Java?

OK, this is going to be my beating a dying horse for the 3rd time. However, this question is different from my earlier two about closures/delegates, which asks about plans for delegates and what are ...
14
votes
5answers
920 views

Closures in C# event handler delegates?

I am coming from a functional-programming background at the moment, so forgive me if I do not understand closures in C#. I have the following code to dynamically generate Buttons that get anonymous ...

1 2 3 4 5 23