473,386 Members | 1,867 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Object garbage collection of events

Object garbage collection of events

I can not help wondering how the garbage collection system handles
events.

If I release all references to an object that has a void that an event
somewhere is using I then have no access to the class holding the void
so it should be garbage collected.

But if an event holds a reference to a void of the class that I have
no reference to douse the class stay in memory because something
refers to it or is that reference removed from the event.

Basically do I need to remove all event calls before releasing an
object or are they removed automatically.

I hope someone understands what I mean.

This code thaw incomplete hopefully helps explain what I mean.

Thank you all

Jay Dee

<code>

static class Program
{
static void Main()
{
Form1 form = new Form1();
form.myClass = new MyClass();
form.MyEvent += new EventHandler(form.myClass.MyEventCall);
form.myClass = null;
Application.Run(form);
}
}

public class Form1 : System.Windows.Forms.Form
{
MyClass myClass;

public event System.EventHandler MyEvent;

public void OnMyEvent(EventArgs e)
{
if (this.MyEvent != null)
{
this.MyEvent(this, e);
}
}
}

public class MyClass
{
public void MyEventCall(object sender, EventArgs e)
{
// do somthing.
}
}

</code>
Jul 26 '08 #1
11 2197
Events do not hold refences to objects, nor does garbage collection relate
to an object's events.

An object is elligible for garbage collection when it has no "applicattion
roots", that is it is no longer reachable from any code paths in the
application. Hooking an object up to an event handler (registering
delegates to handle event notifications for the object) do not count as an
application root. Only object variables count.

-Scott
"Jay Dee" <fi******@gmail.comwrote in message
news:a0**********************************@m44g2000 hsc.googlegroups.com...
Object garbage collection of events

I can not help wondering how the garbage collection system handles
events.

If I release all references to an object that has a void that an event
somewhere is using I then have no access to the class holding the void
so it should be garbage collected.

But if an event holds a reference to a void of the class that I have
no reference to douse the class stay in memory because something
refers to it or is that reference removed from the event.

Basically do I need to remove all event calls before releasing an
object or are they removed automatically.

I hope someone understands what I mean.

This code thaw incomplete hopefully helps explain what I mean.

Thank you all

Jay Dee

<code>

static class Program
{
static void Main()
{
Form1 form = new Form1();
form.myClass = new MyClass();
form.MyEvent += new EventHandler(form.myClass.MyEventCall);
form.myClass = null;
Application.Run(form);
}
}

public class Form1 : System.Windows.Forms.Form
{
MyClass myClass;

public event System.EventHandler MyEvent;

public void OnMyEvent(EventArgs e)
{
if (this.MyEvent != null)
{
this.MyEvent(this, e);
}
}
}

public class MyClass
{
public void MyEventCall(object sender, EventArgs e)
{
// do somthing.
}
}

</code>

Jul 26 '08 #2
On Fri, 25 Jul 2008 18:50:22 -0700, Jay Dee <fi******@gmail.comwrote:
Object garbage collection of events

I can not help wondering how the garbage collection system handles
events.

If I release all references to an object that has a void that an event
somewhere is using I then have no access to the class holding the void
so it should be garbage collected.
What do you mean by "void"? If you mean a method or delegate, then you're
severely abusing the word "void".
But if an event holds a reference to a void of the class that I have
no reference to douse the class stay in memory because something
refers to it or is that reference removed from the event.

Basically do I need to remove all event calls before releasing an
object or are they removed automatically.
Assuming you are asking whether, in the code you posted, the instance of
MyClass becomes eligible for garbage collection when "form.myClass = null"
is executed, the answer is "no", the event handler is not removed
automatically and so the MyClass instance remains reachable.

Pete
Jul 26 '08 #3
On Fri, 25 Jul 2008 20:34:38 -0700, Scott M. <s-***@nospam.nospamwrote:
Events do not hold refences to objects,
Indirectly, they do.
nor does garbage collection relate to an object's events.
It does. Regardless of what the delegate references, an event retains a
reference to any delegate subscribed to the event. If that delegate was
constructed from an instance method, then it includes a reference to the
class instance used, and so the event implicitly also includes that
reference.
An object is elligible for garbage collection when it has no
"applicattion
roots", that is it is no longer reachable from any code paths in the
application. Hooking an object up to an event handler (registering
delegates to handle event notifications for the object) do not count as
an
application root. Only object variables count.
There's no difference between an event and any other field in the object.
None are actually "roots", as the class instance must be referenced by
something else (for example, by a local variable on the stack, which
_would_ be a root), but as long as the object itself is reachable, so too
is anything referenced by its fields, including any events.

Pete
Jul 26 '08 #4
Do this in an MdiChild form
MdiParent.Activated += SomeMethod;

Then dispose of that MdiChild form. The form will not be collected until
the main form closes.

Pete

Jul 26 '08 #5
On Jul 25, 9:07*pm, "Peter Duniho" <NpOeStPe...@nnowslpianmk.com>
wrote:

I wonder: how do you manually collect a static object/variable?
Specifically, a static class. In another thread I created a static
class for a subform/child window that works fine but 'hangs around',
and when the subform/child window is reopened, the static class is
still there, and creates problems since it's part of an Event/Delegate
model.

RL
Jul 26 '08 #6
raylopez99 wrote:
On Jul 25, 9:07 pm, "Peter Duniho" <NpOeStPe...@nnowslpianmk.com>
wrote:

I wonder: how do you manually collect a static object/variable?
Specifically, a static class. In another thread I created a static
class for a subform/child window that works fine but 'hangs around',
and when the subform/child window is reopened, the static class is
still there, and creates problems since it's part of an Event/Delegate
model.

RL
The object isn't static, it's only the reference to the object that is
static. The object is allocated on the heap just like any other object,
and if you remove the reference from the static variable (e.g. setting
it to null), the object can be garbage collected.

--
Göran Andersson
_____
http://www.guffa.com
Jul 26 '08 #7
On Jul 25, 11:34*pm, "Scott M." <s-...@nospam.nospamwrote:
Events do not hold refences to objects, nor does garbage collection relate
to an object's events.

An object is elligible for garbage collection when it has no "applicattion
roots", that is it is no longer reachable from any code paths in the
application. *Hooking an object up to an event handler (registering
delegates to handle event notifications for the object) do not count as an
application root. *Only object variables count.

-Scott
This misunderstanding could be costly...

http://www.codeproject.com/KB/showca...SProfiler.aspx
Jul 26 '08 #8
I thank you all for your valuable responses.

Sorry for miss using the word “void” I think that I mean “method”.

I am still slightly confused as there seems to be two different views
here and I don’t know witch is correct.

Would I be correct in saying that in my example above a call to
“form.MyEvent” will not call the method “MyEventCall” as I no longer
have a valid reference to that method.

Or is that method still valid because the event its self still refers
to it.

Thank you all.

Jay Dee
Jul 26 '08 #9
On Sat, 26 Jul 2008 10:05:11 -0700, Jay Dee <fi******@gmail.comwrote:
[...]
Would I be correct in saying that in my example above a call to
“form.MyEvent” will not call the method “MyEventCall” as I no longer
have a valid reference to that method.
No, that would be incorrect.
Or is that method still valid because the event its self still refers
to it.
Yes. When you subscribe to the event, a delegate is created ("new
EventHandler(...)"), and that delegate references the instance of MyClass
used to create the delegate. As long as the event itself is reachable, so
too will be anything it references, and anything that it references
references, and so on.

Just because _some_ reference to that instance of MyClass no longer
exists, that doesn't make the instance go away. It's only when that
instance of MyClass becomes "unreachable" that the instance may be garbage
collected. An instance is "reachable" if a reference to it is stored in a
root (such as a static field or local variable), or a reference to it is
stored in a data structure that is itself "reachable" (so there's a
recursive aspect to the definition of "reachable", as noted above).

So in your example, as long as the Form1 instance is reachable, so too is
any class instance referenced in a delegate subscribed to an even in the
Form1 instance.

Basically: the garbage collector doesn't go around invalidating
references. Instead, it collects objects only when you can no longer get
at them.

Pete
Jul 26 '08 #10
Would I be correct in saying that in my example above a call to
“form.MyEvent” will not call the method “MyEventCall” as I no longer
have a valid reference to that method.

No, that would be incorrect.
Or is that method still valid because the event its self still refers
to it.

Yes. *When you subscribe to the event, a delegate is created ("new *
EventHandler(...)"), and that delegate references the instance of MyClass*
used to create the delegate. *As long as the event itself is reachable,so *
too will be anything it references, and anything that it references *
references, and so on.

* *Just because _some_ reference to that instance of MyClass no longer *
exists, that doesn't make the instance go away. *It's only when that *
instance of MyClass becomes "unreachable" that the instance may be garbage *
collected. *An instance is "reachable" if a reference to it is stored in a *
root (such as a static field or local variable), or a reference to it is *
stored in a data structure that is itself "reachable" (so there's a *
recursive aspect to the definition of "reachable", as noted above).

So in your example, as long as the Form1 instance is reachable, so too is*
any class instance referenced in a delegate subscribed to an even in the *
Form1 instance.

Basically: the garbage collector doesn't go around invalidating *
references. *Instead, it collects objects only when you can no longer get *
at them.

Pete
Thank you. That was a well written response.
Jul 26 '08 #11
>>Basically do I need to remove all event calls before releasing an
object or are they removed automatically.<<

Jay... As Peter suggest, using events can lead to the "lapsed listener"
conumdrum:

http://weblogs.asp.net/fmarguerie/ar...27/198489.aspx

One solution is the weak event manager:

http://msdn.microsoft.com/en-us/libr...akeventmanager.
aspx

Another alternative would be supplier driven registration of listeners.

Regards,
Jeff

*** Sent via Developersdex http://www.developersdex.com ***
Jul 27 '08 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Egghead | last post by:
Hi all, I'm just wondering that is any way to dispose all objects when my app is shut down? I mean I can use for.. next loop to unload all loaded form when I shut down my app. Thank you, ...
7
by: cmrchs | last post by:
Hi, how do you mark an object for garbage collection in C++.NET 2005 ? MyDbClass^ obj = gcnew MyDbClass(); // Release the object obj = 0; --> COMPILER ERROR obj = nullptr; // nope : this...
9
by: Rob Nicholson | last post by:
Is it possible to trap the creation of a new object and carry out other operations after it's been created? For example, if creating an object of a specific type, then add a reference to a global...
2
by: bughunter | last post by:
This is partly 'for the record' and partly a query about whether the following is a bug somewhere in .Net (whether it be the CLR, JITter, C# compiler). This is all in the context of .Net 1.1 SP1. ...
9
by: Olivier Fermy | last post by:
I have created a sample project where i have referenced an object only with an event : textBox.VisibleChanged += new EventHandler(this.textBox_VisibleChanged); When i call GC.Collect(), the...
5
by: Michael Moreno | last post by:
Hello, In a class I have this code: public object Obj; If Obj is a COM object I would like to call in the Dispose() method the following code: ...
16
by: anonymous.user0 | last post by:
The way I understand it, if I have an object Listener that has registered as a listener for some event Event that's produced by an object Emitter, as long as Emitter is still allocated Listener...
13
by: | last post by:
Hi all, Coming from the good old VB6 days we were told to always destroy our objects as follows:- Dim obj as New MyObject ' do some work with obj obj = Nothing I have been doing this in...
3
by: =?Utf-8?B?QmFycnkgR2lsYmVydA==?= | last post by:
I have a class that raises events that downstream objects subscribe to. In one case, after destroying the object, the event seems to still get handled in a subscriber object. So I instantiate an...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.