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

New, dispose

I have several functions that require doing a New on a local object. If the
object is local to a sub or function, do I need to dispose of it, or will
it just go away like any other local variable?

Geoff Callaghan
Nov 21 '05 #1
9 1685
"Geoff Callaghan" <gc********@trakeng.com> schrieb:
I have several functions that require doing a New on a local object. If the
object is local to a sub or function, do I need to dispose of it, or will
it just go away like any other local variable?


This depends on the object, but in general it's a good idea to call the
object's 'Dispose' method. It's not necessary to set the variables to
'Nothing' at the end of the method because the references will be deleted
automatically when execution exits the method.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
OK, great. How is setting it to 'nothing' different from disposing of it? Is
there somewhere I can go for more info on VB Memory management?
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:uR**************@TK2MSFTNGP12.phx.gbl...
"Geoff Callaghan" <gc********@trakeng.com> schrieb:
I have several functions that require doing a New on a local object. If the object is local to a sub or function, do I need to dispose of it, or will it just go away like any other local variable?


This depends on the object, but in general it's a good idea to call the
object's 'Dispose' method. It's not necessary to set the variables to
'Nothing' at the end of the method because the references will be deleted
automatically when execution exits the method.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #3
"Geoff Callaghan" <gc********@trakeng.com> schrieb im Newsbeitrag
news:ue**************@TK2MSFTNGP09.phx.gbl...
OK, great. How is setting it to 'nothing' different from disposing of it?
It is different (see below).
Is there somewhere I can go for more info on VB Memory management?


..NET Framework Developer's Guide -- Programming for Garbage Collection
<URL:http://msdn.microsoft.com/library/en-us/cpguide/html/cpconprogrammingessentialsforgarbagecollection.asp >

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #4
Geoff,

In general it is a bad idea to call dispose because it is there especially
in a form or a component. The same as it is in general to call ToString.
Dispose is standard implemented in componentbase which 20% of the classes
are inheriting from.

There are however classes that use unmanaged resources. That are not much.

http://msdn.microsoft.com/library/de...classtopic.asp

Have a look under the table in this page for the nicest description I have
seen so far on MSDN. .

It can as well be a good idea for memory consuming classes. The dispose
gives a sign to the gc that it is ready to release. The dispose itself does
not release anything. However to dispose every label or is really very much
overdone. (Which is done by the implementation of the Idisposable in your
form by the way, see that page for this and open than your form. That is the
reason that I often use a component if I dont use a form where this is part
of the code already in)

I hope this helps,

Cor
Nov 21 '05 #5
Geoff,
In addition to the other comments, these are the rules I use to decide if I
should call Dispose or not:

When to call Dispose?

* Call Dispose when the type itself implements IDisposable

* Call Dispose when the type or one of its base classes *overrides*
Dispose(Boolean) if the class inherits from System.ComponentModel.Component
or System.ComponentModel.MarshalByValueComponent

* Do not explicitly call Dispose on classes deriving from
System.Windows.Forms.Control for instances placed on a
System.Windows.Forms.Form as Form will implicitly dispose of them when the
form is Disposed

* Call Dispose on System.Windows.Forms.Form objects when Form.ShowDialog is
used.

* Do not explicitly call Dispose on System.Windows.Forms.Form objects if
Form.Show is used as Dispose will be implicitly called when the form is
closed

* Do not explicitly call Dispose on classes deriving from
System.Web.UI.Control as it will be implicitly called as part of the normal
ASP.NET page processing

I consider the second rule controversial as it relies on using ILDASM or
Reflector to find out implementation details of a class. Its meant for
classes such as DataSet, that have an inherited Dispose, but Dispose doesn't
really do anything.

These rules are based on private discussions with other MVPs & discussions
held in the newsgroups earlier in 2005.
VB 2005 (.NET 2.0) introduces the Using statement that simplifies calling
Dispose.

' VB 2005 syntax
Using dialog As New OptionsDialog
dialog.ShowDialog(Me)
End Using

' VB 2002 & 2003 syntax
Dim dialog As New OptionsDialog
Try
dialog.ShowDialog(Me)
Finally
' assuming that dialog is not nothing...
dialog.Dispose()
End Finally

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Geoff Callaghan" <gc********@trakeng.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
|I have several functions that require doing a New on a local object. If the
| object is local to a sub or function, do I need to dispose of it, or will
| it just go away like any other local variable?
|
| Geoff Callaghan
|
|
Nov 23 '05 #6
Geoff,
As Brian & my other post suggests.

If you are using Form.ShowDialog, when you call Form.Close the form is
simply hidden. You can then call Form.ShowDialog any number of times you
want. Be certain to call Form.Dispose on the form variable when you are done
with it.

If you are using Form.Show, when you call Form.Close, Form.Dispose is
automatically called for you. You cannot use Form.Show a second time without
creating a new instance of the Form.

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Geoff Callaghan" <gc********@trakeng.com> wrote in message
news:Os**************@TK2MSFTNGP09.phx.gbl...
| As usual, the answers to my questions indicate I'm not asking the right
| questions. Let me be a bit more specific in the two cases that have me
| worried;
|
| 1)I am using a sound player object (OPENNETCF). In order to make the code
| work, I have a global PLAYER object which is assigned as a NEW PLAYER
| every time it is used. I'm concerned that, since I'm doing a new and not a
| dispose (there is no dispose method), I'm cluttering the memory with
| "orphan" player objects.
|
| 2) The main purpose of my program is to show a set of screens. I have one
| main screen that controls all the others. The others show in a
| sequence...when one is finished, control returns to the main form, and the
| main form then displays the next form in the sequence. I'm doing this
using
| SHOWDIALOG and CLOSE, rather than SHOW and HIDE, because when the new form
| displays I want it to be in control. It's working fine. However, from what
| I've read, every time I close the form, it disposes of the whole object.
If
| that's the case, how am I able to show it again without causing an error?
Am
| I creating a new form every time I do the SHOWDIALOG? It doesn't seem to
be
| doing that.
|
|
| "Geoff Callaghan" <gc********@trakeng.com> wrote in message
| news:uo**************@tk2msftngp13.phx.gbl...
| > I have several functions that require doing a New on a local object. If
| the
| > object is local to a sub or function, do I need to dispose of it, or
will
| > it just go away like any other local variable?
| >
| > Geoff Callaghan
| >
| >
|
|
Nov 23 '05 #7
Hi,

In addition to Jay.

What he write about the designer created form is the same for the designer
created Component.

Just a little addition what can be a reason to use that if you create a
class from zero.

Cor
Nov 23 '05 #8
I should add that these rules apply to objects that you create, explicitly
or implicitly. Objects that you "own"

Disposable Objects that are passed to you as a parameter of a method (such
as the Graphics object on the Paint event) should not have their disposed
method call, as the system calls it as part of the method that raises the
event.

Objects that something else "owns" should normally be disposed of by the
"owning" object.

Thanks Cor, I need to add designed Components to my list.

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Jay B. Harlow [MVP - Outlook]" <Ja************@tsbradley.net> wrote in
message news:%2****************@TK2MSFTNGP12.phx.gbl...
| Geoff,
| In addition to the other comments, these are the rules I use to decide if
I
| should call Dispose or not:
|
| When to call Dispose?
|
| * Call Dispose when the type itself implements IDisposable
|
| * Call Dispose when the type or one of its base classes *overrides*
| Dispose(Boolean) if the class inherits from
System.ComponentModel.Component
| or System.ComponentModel.MarshalByValueComponent
|
| * Do not explicitly call Dispose on classes deriving from
| System.Windows.Forms.Control for instances placed on a
| System.Windows.Forms.Form as Form will implicitly dispose of them when the
| form is Disposed
|
| * Call Dispose on System.Windows.Forms.Form objects when Form.ShowDialog
is
| used.
|
| * Do not explicitly call Dispose on System.Windows.Forms.Form objects if
| Form.Show is used as Dispose will be implicitly called when the form is
| closed
|
| * Do not explicitly call Dispose on classes deriving from
| System.Web.UI.Control as it will be implicitly called as part of the
normal
| ASP.NET page processing
|
| I consider the second rule controversial as it relies on using ILDASM or
| Reflector to find out implementation details of a class. Its meant for
| classes such as DataSet, that have an inherited Dispose, but Dispose
doesn't
| really do anything.
|
| These rules are based on private discussions with other MVPs & discussions
| held in the newsgroups earlier in 2005.
|
|
| VB 2005 (.NET 2.0) introduces the Using statement that simplifies calling
| Dispose.
|
| ' VB 2005 syntax
| Using dialog As New OptionsDialog
| dialog.ShowDialog(Me)
| End Using
|
| ' VB 2002 & 2003 syntax
| Dim dialog As New OptionsDialog
| Try
| dialog.ShowDialog(Me)
| Finally
| ' assuming that dialog is not nothing...
| dialog.Dispose()
| End Finally
|
| --
| Hope this helps
| Jay [MVP - Outlook]
| .NET Application Architect, Enthusiast, & Evangelist
| T.S. Bradley - http://www.tsbradley.net
|
|
| "Geoff Callaghan" <gc********@trakeng.com> wrote in message
| news:uo**************@tk2msftngp13.phx.gbl...
||I have several functions that require doing a New on a local object. If
the
|| object is local to a sub or function, do I need to dispose of it, or will
|| it just go away like any other local variable?
||
|| Geoff Callaghan
||
||
|
|
Nov 23 '05 #9
This has all been very helpful and informative; however, it seems that I
have been doing things properly all along. I am not using any custom
classes, everything I use is either from Visual Studio or OpenNETCF. Yet I'm
still getting out of memory exceptions after the program has been running
for awhile. If it isn't a garbage collection problem, where else could I
look?
"Geoff Callaghan" <gc********@trakeng.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
I have several functions that require doing a New on a local object. If the object is local to a sub or function, do I need to dispose of it, or will
it just go away like any other local variable?

Geoff Callaghan

Nov 23 '05 #10

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

Similar topics

3
by: faktujaa | last post by:
Hi All, A small confusion. I have defined a connection class that has System.Data.IDbConnection as a member variable and implements IDisposable interface. I have implemented Dispose method to call...
4
by: RiteshDotNet | last post by:
..net Frame work 1. Dispose Method what it does ? A. who its call / when it calls ? B. Is it fire automatically ? c. When dispose method is call what it does ? D. Release a Object from memory or...
11
by: Ken Durden | last post by:
I am in search of a comprehensive methodology of using these two object cleanup approaches to get rid of a number of bugs, unpleasantries, and cleanup-ordering issues we currently have in our...
10
by: Henrik Dahl | last post by:
Hello! After I've finished using an instance of the SqlCommand class, should I then invoke Dispose() on the instance. I suppose so, as there is a Dispose method, but what does it actually...
16
by: Daniel Mori | last post by:
If an object implements the IDisposable interface (regardless if its a framework object or a user object), should I always dispose of that object out of principle?
3
by: Maxim | last post by:
Hi! According to documenation, if we need to release some umanaged resources manually, we need to implement IDisposable interface with single Dispose method. I am just wondering, what will...
1
by: Billy | last post by:
Hello... I'm trying to make a database access class for an asp.net application. When I run my application, the Garbage Collecter doesn't seems to unload the memory attributed to my...
156
by: Dennis | last post by:
Ok, I'm trying to dispose of every object that I create that has a dispose method based on advice from this newsgroup. However, I'm not sure how to dispose of the following object that was created...
71
by: active | last post by:
In the main program I check to see if a certain form has been disposed. Does it make sense in that form's FormClosed event to do: Me.Dispose to make sure it is disposed the next time I check. Or...
44
by: Smokey Grindle | last post by:
I have a list box on my form, but I need to databind it to a data table that is a private member of the form's class... so I basically have Public Class MyForm priate m_MyTable as new datatable...
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: 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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.