1
vote
1answer
29 views
JavaScript variable binding and loop.
Consider such loop:
for(var it = 0; it < 2; it++)
{
setTimeout(function() {
alert(it);
}, 1);
}
The output is:
=> 2
=> 2
I would like it to be: 0, 1. …
6
votes
4answers
178 views
Problem with delegates in C#
In the following program, DummyMethod always print 5. But if we use the commented code instead, we get different values (i.e. 1, 2, 3, 4). Can anybody please explain why this is ha …
0
votes
3answers
59 views
Closure problem? - passing current value of a variable
I'm trying to pass the current value of a variable when an a dynamically generated navigation 'node' is clicked. This needs to just be an integer, but it always results in the last …
0
votes
1answer
30 views
how to get an anonymous function to keep the scoping it had originally when called in an event handler
I have a setup where I get some information, in an ajax call, then I immediately use some of that information for another call, and then I populate some fields.
The problem is tha …
1
vote
2answers
47 views
Is it possible to call a function defined inside a closure?
In the following code, I can call baz. Also somewhere else I read "JavaScript has function-level scope". I know, Im confusing myself somewhere. Can somebody make me understand plea …
1
vote
1answer
92 views
calling F# functions from C# and getting null reference exceptions
I'm using Visual Studio 2008 with the October 2009 F# CTP installed.
I'm trying to call some F# code from my C# program. Most types of F# functions seem to work, but some are not …
8
votes
3answers
222 views
Are these examples C# closures?
I still don't quite understand what a closure is so I posted these two examples and I want to know whether these examples are both closures or not?
Example A:
List<DirectoryIn …
2
votes
3answers
155 views
Is a Python closure a good replacement for `__all__`?
Is it a good idea to use a closure instead of __all__ to limit the names exposed by a Python module? This would prevent programmers from accidentally using the wrong name for a mod …
3
votes
2answers
87 views
Java mechanisms at use in lambdaj closures
Lamdbaj allows the definition of closures in the Java language, various examples can be found
here
My question is regarding the underlying Java mechanisms at use, for instance, t …
3
votes
3answers
148 views
Why are closures suddenly useful for optimizing programs to run on multiple cores?
I read an article that claims that closures (or "blocks") are a useful weapon in the "War on Multicores", because
[...] they allow you to create units of
work, which each hav …
0
votes
1answer
21 views
Issues with closure and a method defined elsewhere.
I am pretty new at Javascript so I may not be using the exact terminology.
Suppose that I define an object literal as such.
var myObj = {
someMethod:function() {
//can …
0
votes
0answers
31 views
In Groovy SwingBuilder, how do I attatch a closure to a JTable that fires when a cell is selected?
I have a JTable being constructed via Groovy's SwingBuilder. I'd like to attach a closure to the table that fires when a cell is selected, but I can't seem to find the right hook. …
5
votes
8answers
356 views
Closures: why are they so useful?
As an OO developer, maybe I have difficulty seeing its value. What added value do they give? Do they fit in an OO world?
3
votes
3answers
120 views
How to store local variables in jQuery click functions?
I'm trying to figure out how to store external variable values in the functions created during jQuery's click() event. Here's a sample of the code I'm working with now.
for(var i= …
0
votes
2answers
72 views
Emacs Actionscript 3 indentation for functions defined inline in an arglist
I'm using the actionscript-mode-connors.el for indenting Actionscript 3 code in emacs.
I have most things figured out, but one thing bothering me is when I use an inline closure a …
