Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do we need Dispose() method on some object? Why doesn't the garbage collector do this work?

The question is: why do we need to call Dispose() on some objects? Why doesn't the garbage collector collect the object when it goes out of scope? I am trying to understand the reason why it was implemented like that. I mean, wouldn't it be easier if Dispose() was called when the garbage collector collected out of scope objects.

like image 615
Karim Avatar asked Jan 04 '10 10:01

Karim


2 Answers

The garbage collector is non-deterministic - it collects objects at some point after they're no longer referenced, but it's not guaranteed to happen in a timely fashion. This has various benefits over reference counting, including allowing cyclic dependencies and the performance benefit of not incrementing and decrementing counters all over the place.

However, it does mean that for resources which should be cleaned up in a timely manner (such as database connections, file handles etc - almost anything other than memory) you still need to explicitly dispose of the resource. The using statement makes this pretty easy though.

like image 61
Jon Skeet Avatar answered Nov 15 '22 14:11

Jon Skeet


Dispose is used to clean-up unmanaged resources (e.g. wrappers for database connections, old COM libraries, ...).

Edit: Some MSDN Links with further details:
http://msdn.microsoft.com/en-us/library/b1yfkh5e(VS.71).aspx
http://msdn.microsoft.com/en-us/library/0xy59wtx(VS.71).aspx

To specify what happens with unmanaged resources when the garbage collector reclaims an object, you have to override the protected Finalize() method: http://msdn.microsoft.com/en-us/library/system.object.finalize(VS.71).aspx

like image 26
Thomas Zoechling Avatar answered Nov 15 '22 15:11

Thomas Zoechling