Lambda Expression cause weakreference's target cannot be GC? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:49:49Z http://stackoverflow.com/feeds/question/535972 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/535972/lambda-expression-cause-weakreferences-target-cannot-be-gc 0 Lambda Expression cause weakreference's target cannot be GC? eric.lin 2009-02-11T08:57:38Z 2009-02-11T14:01:24Z <p>namespace Test {</p> <pre><code>class Test { delegate void HandleMessage(string message); public void handleMessage(string message){} static void Main(string[] args) { HandleMessage listener1 = new Test().handleMessage; WeakReference w1 = new WeakReference(listener1); HandleMessage listener2 = (message) =&gt; { }; WeakReference w2 = new WeakReference(listener2); Console.WriteLine("w1.Target:\t[" + w1.Target + "]"); Console.WriteLine("w2.Target:\t[" + w2.Target + "]"); listener1 = null; listener2 = null; GC.Collect(); Console.WriteLine("after GC"); Console.WriteLine("w1.Target:\t[" + w1.Target + "]"); Console.WriteLine("w2.Target:\t[" + w2.Target + "]"); Console.ReadLine(); } } </code></pre> <p>}</p> <h2>why w2.Target is not null after GC.</h2> <p>w1.Target: [Test.Test+HandleMessage]<br> w2.Target: [Test.Test+HandleMessage]<br> after GC<br> w1.Target: []<br> w2.Target: [Test.Test+HandleMessage]<br></p> http://stackoverflow.com/questions/535972/lambda-expression-cause-weakreferences-target-cannot-be-gc/536060#536060 0 Answer by Anton Gogolev for Lambda Expression cause weakreference's target cannot be GC? Anton Gogolev 2009-02-11T09:21:55Z 2009-02-11T09:21:55Z <p>The common pattern for force-collect-memory is:</p> <pre><code>GC.Collect(); GC.WaitForPendingFinalizers(); GC.Collect(); </code></pre> <p>Moreover, GC is free not to collect stuff :)</p> http://stackoverflow.com/questions/535972/lambda-expression-cause-weakreferences-target-cannot-be-gc/536075#536075 2 Answer by Jon Skeet for Lambda Expression cause weakreference's target cannot be GC? Jon Skeet 2009-02-11T09:26:14Z 2009-02-11T09:26:14Z <p>The lambda expression is cached in a static field in the class - when I compiled it, it was in <code>CS$&lt;&gt;9__CachedAnonymousMethodDelegate1</code>. That makes it more efficient when you use the same lambda expression multiple times, but it means it won't get garbage collected.</p> <p>Look at the generated IL to see what I mean.</p> <p>If the lambda expression captures any variables, I don't believe it will be cached (because it can't be!). So if you change your code to use:</p> <pre><code>string x = "hello"; HandleMessage listener2 = message =&gt; Console.WriteLine(x); </code></pre> <p>then you'll see <code>w2.Target</code> become null after garbage collection.</p> http://stackoverflow.com/questions/535972/lambda-expression-cause-weakreferences-target-cannot-be-gc/536115#536115 3 Answer by Brian Rasmussen for Lambda Expression cause weakreference's target cannot be GC? Brian Rasmussen 2009-02-11T09:39:33Z 2009-02-11T09:39:33Z <p>It has nothing to do with lambdas. The same behavior can be observed for anonymous delegates. So if you change to code to </p> <pre><code>HandleMessage listener2 = delegate(string message) =&gt; { }; </code></pre> <p>you get the same result. </p> <p>In the first case you have an instance method on an instance of Test. Since you have no other references to this instance when <code>listener1</code> is nulled, it may be collected. </p> <p>In the second case the anonymous method must be placed on some type (as methods cannot exist on their own). In this case the compiler places the anonymous method as a static method on your <code>Test</code> class. Furthermore the reference is stored in a static member on the <code>Test</code> type. Thus <code>Type</code> has a static reference to the method as well, which is why it survives a collection. </p> <p>Take a look at the IL to see how things are wired. </p> http://stackoverflow.com/questions/535972/lambda-expression-cause-weakreferences-target-cannot-be-gc/536894#536894 0 Answer by eric.lin for Lambda Expression cause weakreference's target cannot be GC? eric.lin 2009-02-11T14:01:24Z 2009-02-11T14:01:24Z <p>thank for all the answers, Brian Rasmussen and Jon Skeet your answers are correct. Now i thoroughly understand what is going on, so i wrote another example to make everything more clearly. </p> <p>The following example show that :</p> <p>if Test#create() method don't reference to any Test instance object's properties or methods, then "private static HandleMessage CS$&lt;>9__CachedAnonymousMethodDelegate1" will be created by compiler, like what Jon Skeet has said - That makes it more efficient when you use the same lambda expression multiple times. </p> <p>if Test#create() method reference to any Test instance object's properties or methods, like the example below calling this.toString(); then compiler can not create static method to replace the intstance's method logic, so after GC the HandleMessage instance can be collected.</p> <p>namespace Test {</p> <pre><code>class Test { public delegate void HandleMessage(string message); public void handleMessage(string message) { } public HandleMessage create() { return (message) =&gt; { //this.ToString(); }; } static void Main(string[] args) { HandleMessage listener1 = new Test().handleMessage; WeakReference w1 = new WeakReference(listener1); HandleMessage listener2 = new Test().create();//(message) =&gt; { }; WeakReference w2 = new WeakReference(listener2); Console.WriteLine("w1.Target:\t[" + w1.Target + "]"); Console.WriteLine("w2.Target:\t[" + w2.Target + "]"); listener1 = null; listener2 = null; GC.Collect(); Console.WriteLine("after GC"); Console.WriteLine("w1.Target:\t[" + w1.Target + "]"); Console.WriteLine("w2.Target:\t[" + w2.Target + "]"); Console.ReadLine(); } } </code></pre> <p>}</p>