vote up 7 vote down star

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?

flag

53% accept rate

4 Answers

vote up 9 vote down check

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|flag
I should know better than to try and answer questions when its daytime in the UK! – cfeduke Nov 7 '08 at 7:42
Jon's book also has a very good chapter on this (stop being humble, Jon!) – Marc Gravell Nov 7 '08 at 7:57
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
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
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/… 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
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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