C# 2.0 Threading Question (anonymous methods) - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:06:18Zhttp://stackoverflow.com/feeds/question/250244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods5C# 2.0 Threading Question (anonymous methods)John2008-10-30T13:56:21Z2008-10-30T20:51:19Z
<p>I have a simple application with the following code:</p>
<pre><code> FileInfo[] files = (new DirectoryInfo(initialDirectory)).GetFiles();
List<Thread> threads = new List<Thread>(files.Length);
foreach (FileInfo f in files)
{
Thread t = new Thread(delegate()
{
Console.WriteLine(f.FullName);
});
threads.Add(t);
}
foreach (Thread t in threads)
t.Start();
</code></pre>
<p>Lets say in 'I=initialDirectory' directory I have 3 files. This application should then create 3 threads, with each thread printing off one of the file names; however, instead each thread will print off the name of the last file in the 'files' array.</p>
<p>Why is this? Why is the current file 'f' variable not getting setup in the anonymous method correctly?</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/250249#2502499Answer by Stewart Johnson for C# 2.0 Threading Question (anonymous methods)Stewart Johnson2008-10-30T13:57:57Z2008-10-30T14:05:02Z<p>The anonymous method keeps a <strong>reference</strong> to the variable in the enclosing block -- not the actual value of the variable.</p>
<p>By the time the methods are actually executed (when you start the threads) <code>f</code> has been assigned to point to the last value in the collection, so all 3 threads print that last value.</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/250260#2502600Answer by Joel Coehoorn for C# 2.0 Threading Question (anonymous methods)Joel Coehoorn2008-10-30T14:01:09Z2008-10-30T14:01:09Z<p>It's because <code>f.FullName</code> is a reference to a variable, and not a value (which is how you tried to use it). By the time you actually start the threads f.FullName was incremented all the way to the end of the array.</p>
<p>Anyway, why iterate through things here twice?</p>
<pre><code>foreach (FileInfo f in files)
{
Thread t = new Thread(delegate()
{
Console.WriteLine(f.FullName);
});
threads.Add(t);
t.Start();
}
</code></pre>
<p>However, this is still wrong, and perhaps even worse since you now have a race condition to see which thread goes faster: writing the console item or iterating to the next FileInfo.</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/250316#2503160Answer by John for C# 2.0 Threading Question (anonymous methods)John2008-10-30T14:20:37Z2008-10-30T14:20:37Z<p>I don't have the rep to comment, so I'll just reply:</p>
<p>Thanks for the help; for some reason in my mind it would magically create a new method for each loop iteration with the reference to the current FileInfo, which obviously wasn't the case... I guess it makes sense that they were all referencing the same variable 'f', and not what 'f' was referencing.</p>
<p>I fixed the issue by moving the worker code to a new method, and using the thread with ParameterizedThreadStart.</p>
<p>Thanks!</p>
<p>*edit: Oops, didn't realize you could comment on your own questions</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/250323#2503233Answer by Michał Piaskowski for C# 2.0 Threading Question (anonymous methods)Michał Piaskowski2008-10-30T14:22:50Z2008-10-30T17:03:30Z<p>Here are some nice articles about anonymous methods in C# and the code that will be generated by compiler:</p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx</a><br/>
<a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx</a><br/>
<a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx</a><br/></p>
<p>I think if you did:</p>
<pre>
foreach (FileInfo f in files)
{
FileInfo f2 = f; //variable declared inside the loop
Thread t = new Thread(delegate()
{
Console.WriteLine(f2.FullName);
});
threads.Add(t);
}
</pre>
<p>it would would work the way you wanted it to.</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/250379#2503791Answer by frou for C# 2.0 Threading Question (anonymous methods)frou2008-10-30T14:37:55Z2008-10-30T14:37:55Z<p>This is an example of a <a href="http://srtsolutions.com/blogs/billwagner/archive/2008/01/22/looking-inside-c-closures.aspx" rel="nofollow">"closure"</a> in C#, right?</p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/251043#2510430Answer by Charles Bretana for C# 2.0 Threading Question (anonymous methods)Charles Bretana2008-10-30T17:28:36Z2008-10-30T17:28:36Z<p>It's because the underlying code for iterator (foreach) has already 'iterated' through all the values in the List before the threads start... So when they start, the value 'pointed' at by the iterator is the last one in the list...</p>
<p>Start the thread inside the iteration instead.... </p>
<pre><code>foreach (FileInfo f in files)
{
string filName = f.FullName;
Thread t = new Thread(delegate()
{ Console.WriteLine(filName); });
t.Start();
}
</code></pre>
<p>I don't believe a race is possible here since there's no shared memory accessible from all threads. </p>
http://stackoverflow.com/questions/250244/c-2-0-threading-question-anonymous-methods/251723#251723-1Answer by jeff.lindholm for C# 2.0 Threading Question (anonymous methods)jeff.lindholm2008-10-30T20:51:19Z2008-10-30T20:51:19Z<p>The following would work as well.</p>
<pre><code> Thread t = new Thread(delegate()
{
string name = f.Name;
Console.WriteLine(name);
});
</code></pre>