vote up 3 vote down star

I translated this code(it has bad side effect that it just capture the outer variable):

foreach (TaskPluginInfo tpi in Values)
{                    
    GenerateMenu(menuStrip, tpi.MenuTree, tpi.MenuText, delegate { tpi.ShowTask() });
}

To this code(because the above is not working):

foreach (TaskPluginInfo tpi in Values)
{                    
    // must capture the variable
    var x = tpi;
    GenerateMenu(menuStrip, tpi.MenuTree, tpi.MenuText, delegate { x.ShowTask(); });
}

What's the correct terminology for that work-around on that little known side effect? For now, I commented "must capture the variable." Is the word capture, the correct terminology?

flag

I edited the title, as the example doesn't actually include a lambda – Marc Gravell Jul 6 at 9:55
But the title is still not referring to closures, which is essential. – Philippe Leybaert Jul 6 at 9:57
Re-titled, then... – Marc Gravell Jul 6 at 12:52

6 Answers

vote up 2 vote down check

Well, both tpi and x are variables (of different sorts) that get captured in one of the examples... the main point here is that you want to restrict the scope of the captured variable (ideally x) to inside the loop.

So, perhaps; "capture the value of the iteration variable; not the iteration variable itself"

link|flag
vote up 0 vote down

closure

link|flag
vote up 0 vote down

If TaskPluginInfo is a struct then you are capturing the value if it is a class the you are taking a reference.

link|flag
vote up 1 vote down

What you're actually doing is creating a closure context containing the value of the iterator for each iteration. This context will remain available to the delegate as long as the delegate exists.

How would you call the statement you're referring to? I think "capture" is a good verb to use. In the end, as long as it's clear to everyone what you mean, it's ok :-)

link|flag
vote up 0 vote down

Yeah, it's capture; you can also use 'closes over'. Here are a couple of example sentences;

the delegate passed to GenerateMenu captures the variable x.

the delegate passed to GenerateMenu is a lambda that closes over x.

You might also want to google for the terms 'free variable' and 'bound variable'.

link|flag
vote up 1 vote down

Resharper's warning calls this scenario "Access to modified closure" and recommended solution is to "Capture variable" so in my comment I would say "Must capture variable to avoid access to modified closure".

link|flag

Your Answer

Get an OpenID
or

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