Garbage collection

L

luigi

If i dispose all object in my vb.net c# code what perfomances advantage
i have?

mant thanks
 
J

Jon Shemitz

luigi wrote:
If i dispose all object in my vb.net c# code what perfomances advantage
i have?

As written, you get a performance hit, or a negative performance
advantage. Disposing of an object does not reclaim memory, nor does it
hasten garbage collection; writing and calling an empty Dispose method
merely wastes space and time.

Otoh, if you don't really mean "all object" but actually mean "all
objects that implement IDispose" then you are closing resources when
you are done with them, and avoiding "finalization costs."
Finalization is expensive because a dead object must be brought back
to life, promoted to the next generation, and relocated; it then
sticks around, taking up memory, until the next higher-level
collection. So, by calling Dispose on every object that implements it,
you are reducing memory consumption and garbage collection costs.
 
S

Scott M.

So, by calling Dispose on every object that implements it,
you are reducing memory consumption and garbage collection costs.

You mean you are increasing memory consumption and garbage collection costs,
not reducing them.
 
J

Jon Shemitz

:
You mean you are increasing memory consumption and garbage collection costs,
not reducing them.

No, I meant what I said. Invoking IDispose allows data to be closed
when you're done with, and thus avoids the use of the finalizer. The
finalizer is a fail-safe, but using it adds (avoidable) relocation
costs and means that the gc has to look at the dead object (at least)
twice.
 
S

Scott M.

Yes, but calling Dispose on every class that exposes it will cause
additional CPU costs, not less.
 
J

Jon Shemitz

:
Yes, but calling Dispose on every class that exposes it will cause
additional CPU costs, not less.

No, in most cases it's spending time to save time. When an IDispose
class has a finalizer, its Dispose methods typically runs the exact
same code that the finalizer runs, plus it calls GC.SuppressFinalize.
This is saving all the CPU costs involved in running the finalizer,
plus it allows the memory to be reused sooner.

When an IDispose class does not have a finalizer, it usually has
private reference(s) to handle class(es) that do have a finalizer, so
the call to Dispose allows it to close its handle(s), thus (again)
saving all the CPU costs involved in running the handle finalizer(s),
plus allowing the memory to be reused sooner.

The only time calling Dispose doesn't save time is with the minority
of IDispose implementations that aren't avoiding a finalizer, that are
doing something like restoring the GUI cursor or noting how long it's
been since a stopwatch class has been created.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top