473,385 Members | 1,780 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,385 software developers and data experts.

Garbage Collection

Hi all, lets get start.

i have a few questions to ask perhaps someone can help me.
i´m doing a simple aplication. some thing like this
i have a form with a button that opens another form in dialog mode.

' button code ...
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()

first , when the application start, it uses (ex 17 mb of memory see using
the windows taskmanager), and after i close the dialog form, it uses even
more memory.
is there any sample that shows how realy gc works, i need to save memory not
spend an waiting for a stupid function todo his job.

second. when i use a form and open inside a function , the finaliza method
is never called. why ? see below ..

private sub Button1_click (...... )
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()
end sub

i think it is suposed after the end sub, it calls the finalise of the
frmAbout ??? or It is'nt ?? the finalise is never called in this situation.
:(
what is microsoft thinking when they do the GC.

thks
JSB
Jul 21 '05 #1
8 1678
Hello,
first , when the application start, it uses (ex 17 mb of memory see using
the windows taskmanager), and after i close the dialog form, it uses even
more memory.
Don't trust the taskmanager. Instead use either a CLR Profiler or check the
performance counter.

second. when i use a form and open inside a function , the finaliza method
is never called. why ? see below ..


By Finalizer you mean the destructor? That is not called when you call
dispose yourself.

Finalizers are very expensive, because the GC has to promote objects to
finalize to the next generation on the heap and run the finalizer. The
memory can only be reclaimed until the GC has run the next time.
Greetings,
Henning
Jul 21 '05 #2

"Joăo Santa Bárbara" <jo****@i24portugal.com> wrote in message
news:OC****************@tk2msftngp13.phx.gbl...
Hi all, lets get start.

i have a few questions to ask perhaps someone can help me.
i´m doing a simple aplication. some thing like this
i have a form with a button that opens another form in dialog mode.

' button code ...
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()

first , when the application start, it uses (ex 17 mb of memory see using
the windows taskmanager), and after i close the dialog form, it uses even
more memory.
is there any sample that shows how realy gc works, i need to save memory
not spend an waiting for a stupid function todo his job.


' button code ...
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()
frm = nothing
gc.Collect()

This will reduce the memory. In a fat client application, when you _know_
that the managed heap is mostly garbage, and you want to keep it from
getting any bigger, feel free to force a garbage collection.

David
Jul 21 '05 #3
check out Rico's blog, this guy knows what he is talking about....

http://blogs.msdn.com/ricom/archive/...29/271829.aspx

HTH

Ollie Riches

"Joăo Santa Bárbara" <jo****@i24portugal.com> wrote in message
news:OC**************@tk2msftngp13.phx.gbl...
Hi all, lets get start.

i have a few questions to ask perhaps someone can help me.
i´m doing a simple aplication. some thing like this
i have a form with a button that opens another form in dialog mode.

' button code ...
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()

first , when the application start, it uses (ex 17 mb of memory see using
the windows taskmanager), and after i close the dialog form, it uses even
more memory.
is there any sample that shows how realy gc works, i need to save memory not spend an waiting for a stupid function todo his job.

second. when i use a form and open inside a function , the finaliza method
is never called. why ? see below ..

private sub Button1_click (...... )
Dim frm As New frmAbout
frm.ShowDialog(Me)
frm.Dispose()
end sub

i think it is suposed after the end sub, it calls the finalise of the
frmAbout ??? or It is'nt ?? the finalise is never called in this situation. :(
what is microsoft thinking when they do the GC.

thks
JSB

Jul 21 '05 #4
Henning,
Are you sure that destructors are not called when you call a Dispose
yourself. I think this is done only when you GC.SuppressFinalize() from the
Dispose method that this happens.

--
http://dotnetjunkies.com/weblog/dotnut
"Henning Krause [MVP]" <ne**********@spam.infinitec.de> wrote in message
news:Ov**************@TK2MSFTNGP10.phx.gbl...
Hello,
first , when the application start, it uses (ex 17 mb of memory see using the windows taskmanager), and after i close the dialog form, it uses even more memory.
Don't trust the taskmanager. Instead use either a CLR Profiler or check

the performance counter.

second. when i use a form and open inside a function , the finaliza method is never called. why ? see below ..


By Finalizer you mean the destructor? That is not called when you call
dispose yourself.

Finalizers are very expensive, because the GC has to promote objects to
finalize to the next generation on the heap and run the finalizer. The
memory can only be reclaimed until the GC has run the next time.
Greetings,
Henning

Jul 21 '05 #5

"Ranjan" <ra*************@gmail.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
Henning,
Are you sure that destructors are not called when you call a Dispose
yourself. I think this is done only when you GC.SuppressFinalize() from
the
Dispose method that this happens.
A destructor is not called when a Dispose method is called - internally in
..NET they have nothing to do with each other.

When an object is no longer reachable via a root and a garbage collection
cycle occurs, the GC determines that the object has a finalizer and puts the
object on a special finalizer queue. This is serviced by a thread that runs
in the background. After the finalizer for the object has run and the next
GC cycle has occurred the memory is reclaimed.

When a Dispose method is called all that happens is that a method (called
Dispose) is invoked on the object; the intent of this method is to cleanup
the object (whatever that means). It does not involve the finalizer at all.
Typically after an object has been disposed it should not be used again -
however, this is not a requirement, it is a convention.

Quite often the Dispose method also calls GC.SuppressFinalize(). This has
the effect of removing the object from the list of objects that require
finalization so that the extra GC cycle to reclaim the memory does not
occur. However, calling GC.SuppressFinalize() from the Dispose method is not
done by the CLR, nor is it a requirement, it is only a convention that most
programmers follow.

For example, if a Dispose is called on an object but GC.SuppressFinalize()
is not called, and the object remains reachable, then the Finalizer is never
called and the memory is never reclaimed. Conversely, if the object is no
longer reachable then at the next GC cycle the Finalizer gets queued, and on
the following GC it is called, even if the Dispose method is never called.

This proves that the two operations are unrelated unless specifically tied
together via user logic.




--
http://dotnetjunkies.com/weblog/dotnut
"Henning Krause [MVP]" <ne**********@spam.infinitec.de> wrote in message
news:Ov**************@TK2MSFTNGP10.phx.gbl...
Hello,
> first , when the application start, it uses (ex 17 mb of memory see using > the windows taskmanager), and after i close the dialog form, it uses even > more memory.


Don't trust the taskmanager. Instead use either a CLR Profiler or check

the
performance counter.
>
> second. when i use a form and open inside a function , the finaliza method > is never called. why ? see below ..
>


By Finalizer you mean the destructor? That is not called when you call
dispose yourself.

Finalizers are very expensive, because the GC has to promote objects to
finalize to the next generation on the heap and run the finalizer. The
memory can only be reclaimed until the GC has run the next time.
Greetings,
Henning


Jul 21 '05 #6
Exactly my thoughts

--
http://dotnetjunkies.com/weblog/dotnut


"David Levine" <no******************@wi.rr.com> wrote in message
news:uh**************@TK2MSFTNGP12.phx.gbl...

"Ranjan" <ra*************@gmail.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
Henning,
Are you sure that destructors are not called when you call a Dispose
yourself. I think this is done only when you GC.SuppressFinalize() from
the
Dispose method that this happens.
A destructor is not called when a Dispose method is called - internally in
.NET they have nothing to do with each other.

When an object is no longer reachable via a root and a garbage collection
cycle occurs, the GC determines that the object has a finalizer and puts

the object on a special finalizer queue. This is serviced by a thread that runs in the background. After the finalizer for the object has run and the next
GC cycle has occurred the memory is reclaimed.

When a Dispose method is called all that happens is that a method (called
Dispose) is invoked on the object; the intent of this method is to cleanup
the object (whatever that means). It does not involve the finalizer at all. Typically after an object has been disposed it should not be used again -
however, this is not a requirement, it is a convention.

Quite often the Dispose method also calls GC.SuppressFinalize(). This has
the effect of removing the object from the list of objects that require
finalization so that the extra GC cycle to reclaim the memory does not
occur. However, calling GC.SuppressFinalize() from the Dispose method is not done by the CLR, nor is it a requirement, it is only a convention that most programmers follow.

For example, if a Dispose is called on an object but GC.SuppressFinalize()
is not called, and the object remains reachable, then the Finalizer is never called and the memory is never reclaimed. Conversely, if the object is no
longer reachable then at the next GC cycle the Finalizer gets queued, and on the following GC it is called, even if the Dispose method is never called.

This proves that the two operations are unrelated unless specifically tied
together via user logic.




--
http://dotnetjunkies.com/weblog/dotnut
"Henning Krause [MVP]" <ne**********@spam.infinitec.de> wrote in message
news:Ov**************@TK2MSFTNGP10.phx.gbl...
Hello,

> first , when the application start, it uses (ex 17 mb of memory see

using
> the windows taskmanager), and after i close the dialog form, it uses

even
> more memory.

Don't trust the taskmanager. Instead use either a CLR Profiler or check

the
performance counter.

>
> second. when i use a form and open inside a function , the finaliza

method
> is never called. why ? see below ..
>

By Finalizer you mean the destructor? That is not called when you call
dispose yourself.

Finalizers are very expensive, because the GC has to promote objects to
finalize to the next generation on the heap and run the finalizer. The
memory can only be reclaimed until the GC has run the next time.
Greetings,
Henning



Jul 21 '05 #7
I got the context wrong it think.
What Henning wrote was it is not inherent that a destructor is called when a
Dispose is called.
I misunderstood, misread the "not" part. Sorry.
--

"Ranjan" <ra*************@gmail.com> wrote in message
news:Og**************@tk2msftngp13.phx.gbl...
Exactly my thoughts

--
http://dotnetjunkies.com/weblog/dotnut


"David Levine" <no******************@wi.rr.com> wrote in message
news:uh**************@TK2MSFTNGP12.phx.gbl...

"Ranjan" <ra*************@gmail.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
Henning,
Are you sure that destructors are not called when you call a Dispose yourself. I think this is done only when you GC.SuppressFinalize() from the
Dispose method that this happens.
A destructor is not called when a Dispose method is called - internally in .NET they have nothing to do with each other.

When an object is no longer reachable via a root and a garbage collection cycle occurs, the GC determines that the object has a finalizer and puts

the
object on a special finalizer queue. This is serviced by a thread that

runs
in the background. After the finalizer for the object has run and the next GC cycle has occurred the memory is reclaimed.

When a Dispose method is called all that happens is that a method (called Dispose) is invoked on the object; the intent of this method is to cleanup the object (whatever that means). It does not involve the finalizer at

all.
Typically after an object has been disposed it should not be used again - however, this is not a requirement, it is a convention.

Quite often the Dispose method also calls GC.SuppressFinalize(). This has the effect of removing the object from the list of objects that require
finalization so that the extra GC cycle to reclaim the memory does not
occur. However, calling GC.SuppressFinalize() from the Dispose method is

not
done by the CLR, nor is it a requirement, it is only a convention that

most
programmers follow.

For example, if a Dispose is called on an object but GC.SuppressFinalize() is not called, and the object remains reachable, then the Finalizer is

never
called and the memory is never reclaimed. Conversely, if the object is no longer reachable then at the next GC cycle the Finalizer gets queued, and on
the following GC it is called, even if the Dispose method is never

called.
This proves that the two operations are unrelated unless specifically tied together via user logic.




--
http://dotnetjunkies.com/weblog/dotnut
"Henning Krause [MVP]" <ne**********@spam.infinitec.de> wrote in message news:Ov**************@TK2MSFTNGP10.phx.gbl...
> Hello,
>
> > first , when the application start, it uses (ex 17 mb of memory see using
> > the windows taskmanager), and after i close the dialog form, it uses even
> > more memory.
>
> Don't trust the taskmanager. Instead use either a CLR Profiler or check the
> performance counter.
>
> >
> > second. when i use a form and open inside a function , the finaliza
method
> > is never called. why ? see below ..
> >
>
> By Finalizer you mean the destructor? That is not called when you call> dispose yourself.
>
> Finalizers are very expensive, because the GC has to promote objects to> finalize to the next generation on the heap and run the finalizer. The> memory can only be reclaimed until the GC has run the next time.
>
>
> Greetings,
> Henning
>
>



Jul 21 '05 #8
Yes, thats right. But most Dipose() method make a call to
SuppressFinalize().

Greetings,
Henning Krause [MVP]
==========================
Visit my website: http://www.infinitec.de
Try my free Exchange Explorer: Mistaya
(http://www.infinitec.de/software/mistaya.aspx)
"Ranjan" <ra*************@gmail.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
Henning,
Are you sure that destructors are not called when you call a Dispose
yourself. I think this is done only when you GC.SuppressFinalize() from the Dispose method that this happens.

--
http://dotnetjunkies.com/weblog/dotnut
"Henning Krause [MVP]" <ne**********@spam.infinitec.de> wrote in message
news:Ov**************@TK2MSFTNGP10.phx.gbl...
Hello,
first , when the application start, it uses (ex 17 mb of memory see using the windows taskmanager), and after i close the dialog form, it uses even more memory.


Don't trust the taskmanager. Instead use either a CLR Profiler or check

the
performance counter.

second. when i use a form and open inside a function , the finaliza method is never called. why ? see below ..


By Finalizer you mean the destructor? That is not called when you call
dispose yourself.

Finalizers are very expensive, because the GC has to promote objects to
finalize to the next generation on the heap and run the finalizer. The
memory can only be reclaimed until the GC has run the next time.
Greetings,
Henning


Jul 21 '05 #9

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

Similar topics

1
by: Bob | last post by:
Are there any known applications out there used to test the performance of the .NET garbage collector over a long period of time? Basically I need an application that creates objects, uses them, and...
6
by: Ganesh | last post by:
Is there a utility by microsoft (or anyone) to force garbage collection in a process without have access to the process code. regards Ganesh
11
by: Rick | last post by:
Hi, My question is.. if Lisp, a 40 year old language supports garbage collection, why didn't the authors of C++ choose garbage collection for this language? Are there fundamental reasons behind...
34
by: Ville Voipio | last post by:
I would need to make some high-reliability software running on Linux in an embedded system. Performance (or lack of it) is not an issue, reliability is. The piece of software is rather simple,...
5
by: Bob lazarchik | last post by:
Hello: We are considering developing a time critical system in C#. Our tool used in Semiconductor production and we need to be able to take meaurements at precise 10.0 ms intervals( 1000...
8
by: mike2036 | last post by:
For some reason it appears that garbage collection is releasing an object that I'm still using. The object is declared in a module and instantiated within a class that is in turn instantiated by...
28
by: Goalie_Ca | last post by:
I have been reading (or at least googling) about the potential addition of optional garbage collection to C++0x. There are numerous myths and whatnot with very little detailed information. Will...
56
by: Johnny E. Jensen | last post by:
Hellow I'am not sure what to think about the Garbage Collector. I have a Class OutlookObject, It have two private variables. Private Microsoft.Office.Interop.Outlook.Application _Application =...
350
by: Lloyd Bonafide | last post by:
I followed a link to James Kanze's web site in another thread and was surprised to read this comment by a link to a GC: "I can't imagine writing C++ without it" How many of you c.l.c++'ers use...
158
by: pushpakulkar | last post by:
Hi all, Is garbage collection possible in C++. It doesn't come as part of language support. Is there any specific reason for the same due to the way the language is designed. Or it is...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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,...

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.