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.
问题:
回答1:
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.
回答2:
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