Tagged Questions

39
votes
9answers
4k 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 i …
36
votes
7answers
2k views

How does a javascript closure 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 JS closures to a 27 years old friend and c …
18
votes
7answers
973 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' …
18
votes
1answer
3k 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.xm …
18
votes
10answers
2k 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 …
17
votes
1answer
1k 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 …
15
votes
9answers
2k 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 …
12
votes
8answers
853 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 …
11
votes
3answers
364 views

What is so special about closures?

I've been reading this article about closures in which they say: "all the plumbing is automatic" the compiler "creates a wrapper class" and "extends the life of the variables" "y …
11
votes
7answers
712 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 succ …
10
votes
14answers
1k 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 sol …
9
votes
6answers
423 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 = {}; f …
9
votes
4answers
408 views

How do I do closures in Emacs lisp?

I'm trying to create a function on the fly that would return one constant value. In JavaScript and other modern imperative languages I would use closures: function id(a) { re …
9
votes
7answers
802 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 someo …
9
votes
5answers
712 views

What’s the current state of closures in Java?

Does anybody know, if closures will be in Java 7?

1 2 3 4 5 10 next
15 30 50 per page