java and javascript callbacks compared - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:31:54Zhttp://stackoverflow.com/feeds/question/447097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/447097/java-and-javascript-callbacks-compared1java and javascript callbacks comparedmorgancodes2009-01-15T15:12:41Z2009-01-15T16:53:30Z
<p>Hello,</p>
<p>It seems I don't understand javascript callbacks quite as well as I thought.</p>
<p>In the following example, I would think that each copy of function in setTimeout would refer to its own copy of the variable "index". Therefore, running the example should produce the following alerts: "zero" "one" "two".</p>
<pre><code>var array = ["zero", "one", "two"];
var out = "";
for(var i = 0; i < 3; i++){
var index = i;
setTimeout( function(){alert(array[index])}, 1 );
}
</code></pre>
<p>However, it seems that theres only one copy of the index variable, and all copies of the callback function point to the same variable, giving me the following alerts: "two" "two" "two".</p>
<p>The following analagous (I thought) example in java prints "zero" "one" "two", as expected. </p>
<pre><code>import java.util.ArrayList;
import java.util.List;
public class CallBacks {
public static void main(String[] args) {
String[] array = {"zero", "one", "two"};
List<Callback> callBacks = new ArrayList<Callback>();
for(int i = 0; i<3; i++){
final String print = array[i];
callBacks.add(
new Callback(){
public void execute(){
System.out.println(print);
}
}
);
}
for(Callback cb : callBacks){
cb.execute();
}
}
private interface Callback{
public void execute();
}
}
</code></pre>
<p>Can anyone explain to me why the js example doesn't work, and perhaps compare what's going on in the two examples?</p>
http://stackoverflow.com/questions/447097/java-and-javascript-callbacks-compared/447127#4471271Answer by Crescent Fresh for java and javascript callbacks comparedCrescent Fresh2009-01-15T15:17:36Z2009-01-15T15:17:36Z<p><code>index</code> changes with each iteration of the loop. What you want is to place <code>index</code> into a closure not affected by the loop:</p>
<pre><code>var array = ["zero", "one", "two"];
var out = "";
for(var i = 0; i < 3; i++) {
(function(index) {
setTimeout( function(){alert(array[index])}, 1 );
})(i)
}
</code></pre>
http://stackoverflow.com/questions/447097/java-and-javascript-callbacks-compared/447137#4471370Answer by Simon Groenewolt for java and javascript callbacks comparedSimon Groenewolt2009-01-15T15:20:27Z2009-01-15T15:28:50Z<p>In javascript the for loop does not have it's own scope - so a var you create inside a loop is not different from one defined outside of it.</p>
http://stackoverflow.com/questions/447097/java-and-javascript-callbacks-compared/447367#4473670Answer by meouw for java and javascript callbacks comparedmeouw2009-01-15T16:08:17Z2009-01-15T16:08:17Z<p>I asked <a href="http://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope">an almost identical</a> question yesterday and got a couple of different variations in the answers and some discussion on the merits of each. Might be worth a look</p>
http://stackoverflow.com/questions/447097/java-and-javascript-callbacks-compared/447572#4475720Answer by Noah Sussman for java and javascript callbacks comparedNoah Sussman2009-01-15T16:53:30Z2009-01-15T16:53:30Z<p><a href="http://www.crockford.com/javascript/private.html" rel="nofollow">Private Members In JavaScript</a> is my favorite reference on closures. It is written as a recipe for providing private variables in JS objects (maybe useful, maybe not) but in the process goes through an excellent introduction of how closures work in general, and especially in JS.</p>
<p><a href="http://www.jibbering.com/faq/faq_notes/closures.html#clClDo" rel="nofollow">The comp.lang.javascript FAQ</a> has a worthwhile section on closures as well.</p>
<p>Closures can be confusing so I put together a <a href="http://onemorebug.com/blog/2007/05/06/neat-little-example-of-a-useful-javascript-closure-2/" rel="nofollow">working example of the shortest useful closure I've come across,</a> which was in the Rhino book.</p>
<p>Oh and I don't have enough rep to comment yet :) but I saw your question above about why you have to put parenthesis around functions sometimes. That's only necessary when you <em>invoke</em> an anonymous function inline. For example the parenthesis are required here:</p>
<pre><code>(function (arg) {alert(arg);})('hi world');
</code></pre>
<p>Because you are creating a function and then immediately invoking it. But the parens are not necessary in the usual case where you are just declaring a named function for later use.</p>