up vote 24 down vote favorite
5
share [g+] share [fb]

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(() => variable * 2);
    ++ variable;
}

foreach (var act in actions)
{
    Console.WriteLine(act.Invoke());
}

I expect it to output 0, 2, 4, 6, 8. However, it actually output five 10s.

It seems that it is due to all actions are referring to one captured variable. As a result, when they get invoked, they all have same output.

Is there any way to walk round this limit to have each action instance have its own captured variable?

link|improve this question

62% accept rate
2  
See also Eric Lippert's Blog series on the subject: Closing over the Loop Variable Considered Harmful – Brian Nov 11 '10 at 21:50
feedback

5 Answers

up vote 21 down vote accepted

Yes - take a copy of the variable inside the loop:

while (variable < 5)
{
    int copy = variable;
    actions.Add(() => copy * 2);
    ++ variable;
}

You can think of it as if the C# compiler creates a "new" local variable every time it hits the variable declaration. In fact it'll create appropriate new closure objects, and it gets complicated (in terms of implementation) if you refer to variables in multiple scopes, but it works :)

Note that a more common occurrence of this problem is using for or foreach:

for (int i=0; i < 10; i++) // Just one variable
foreach (string x in foo) // And again, despite how it reads out loud

See section 7.14.4.2 of the C# 3.0 spec for more details of this, and my article on closures has more examples too.

link|improve this answer
I should know better than to try and answer questions when its daytime in the UK! – cfeduke Nov 7 '08 at 7:42
4  
Jon's book also has a very good chapter on this (stop being humble, Jon!) – Marc Gravell Nov 7 '08 at 7:57
2  
It looks better if I let other people plug it ;) (I confess that I do tend to vote up answers recommending it though.) – Jon Skeet Nov 7 '08 at 8:03
Okay I've finally ordered his book and it replaces my Erlang book in the read queue. – cfeduke Nov 7 '08 at 8:03
hah. my copy arrived yesterday. the pints will be on Mr. Skeet if theres ever a SO Meetup ;) – Eoin Campbell Nov 7 '08 at 8:22
show 1 more comment
feedback

I believe what you are experiencing is something known as Closure http://en.wikipedia.org/wiki/Closure_(computer_science). Your lamba has a reference to a variable which is scoped outside the function itself. Your lamba is not interpreted until you invoke it and once it is it will get the value the variable has at execution time.

link|improve this answer
feedback

Yes you need to scope variable within the loop and pass it to the lambda that way:

List<Func<int>> actions = new List<Func<int>>();

int variable = 0;
while (variable < 5)
{
    int variable1 = variable;
    actions.Add(() => variable1 * 2);
    ++variable;
}

foreach (var act in actions)
{
    Console.WriteLine(act.Invoke());
}

Console.ReadLine();
link|improve this answer
feedback

The way around this is to store the value you need in a proxy variable, and have that variable get captured.

I.E.

while( variable < 5 )
{
    int copy = variable;
    actions.Add( () => copy * 2 );
    ++variable;
}
link|improve this answer
Yeah, it works. But, why? – Morgan Cheng Nov 7 '08 at 7:34
See the explanation in my edited answer. I'm finding the relevant bit of the spec now. – Jon Skeet Nov 7 '08 at 7:35
Haha jon, I actually just read your article: csharpindepth.com/Articles/Chapter5/Closures.aspx You do good work my friend. – tjlevine Nov 7 '08 at 7:36
@tjlevine: Thanks very much. I'll add a reference to that in my answer. I'd forgotten about it! – Jon Skeet Nov 7 '08 at 7:37
Also, Jon, I'd love to read about your thoughts on the various Java 7 closure proposals. I've seen you mention that you wanted to write one, but I haven't seen it. – tjlevine Nov 7 '08 at 7:42
show 1 more comment
feedback

The same situation which is happening in Multi-Threading[C#.Net 4.0].

See the following code:

Purpose is to print 1,2,3,4,5 in order.

for (int counter = 1; counter <= 5; counter++)

{  

  new Thread (() => Console.Write (counter)).Start();

}

Output is interesting!.[It might be like 21334...]

The only solution is the use of local variables.

for (int counter = 1; counter <= 5; counter++)

{

  int localVar= counter;

  new Thread (() => Console.Write (localVar)).Start();

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.