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

荒凉一梦 提交于 2020-01-02 01:06:11

问题


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



来源:https://stackoverflow.com/questions/1998582/why-do-we-need-dispose-method-on-some-object-why-doesnt-the-garbage-collect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!