As a java developer getting into .NET I'd like to understand the IDisposable interface. Could somebody please try to explain this and how it differs from what happens in Java? Thanks.
|
|
I wrote a detailed series of articles on IDisposable. The basic idea here is that sometimes you DO need deterministic disposal of resources. IDisposable provides that mechanism. For example, say you have a control in a Window. When this is created, it creates a windows handle (HWND) internally. When you remove the control from the Window, and its no longer used, the control becomes eligible for garbage collection - but it does not get collected right away. In fact, there are no guarantees as to how long it will be before it is collected. Until the GC runs and processes the orphaned control, it will still use resources, since it's still holding the HWND. IDisposable provides a means for objects that contain code that needs cleanup separate from the GC to be explicitly cleaned up by the user of the object. In the control's case, we can call |
||||||||||
|
|
|
There're situations when you need reliable disposal for resources owned by your class. E.g., opened connection should be closed in proper time, not when GC decides to collect memory. In .NET method
Because this pattern is so widely used, there's a syntactic sugar for this:
As this syntax is very concise, sometimes it's useful to implement
Usage:
In Java more or less equivalent interface is How
|
||
|
|
|
|
There is no equivalent. It is used when you use unmanaged resources ( in Java all the resources area managed ). In .net memory allocated by the managed resources is collected automatically by the GC ( as in Java ) . You have additionally the opportunity to use unmanaged resources, where you will be responsible for the memory allocation and its release. You call this method when you don't need the resources anymore. |
||
|
|
|
|
Basically IDisposable at a high level, combined with the
If Java had a using keyword and an IDisposable interface with a
With the close method being implicitly called at the end of that block. No need for try/finally. That being said, IDisposible has a fairly complex contract, and is mainly concerned with freeing unmanaged memory. You have to work hard with Java to have unmanaged memory (basically with JNI and Swing components, you have the concept), but it is much more common in .NET, so there is language support for the concept. |
||
|
|
