Purpose of Dispose calling Dispose(IsDisposing) pattern in C#?

后端 未结 4 1527
清歌不尽
清歌不尽 2020-12-16 04:18

Here is code from MSDN. I don\'t understand why the work isn\'t just done in the regular Dispose() method here. What is the purpose of having the Dispose(bool) method? Wh

相关标签:
4条回答
  • 2020-12-16 04:44

    The finalizer would call Dispose(false) - in which case you don't touch any of the other managed resources (which may already have been finalized).

    Personally I don't follow this pattern often - because I only very, very rarely need a finalizer, and it's also rare for me to write a non-sealed IDisposable implementation. If you're writing a sealed class without a finalizer, I would go for a simple implementation.

    0 讨论(0)
  • 2020-12-16 04:50

    Your Dispose(disposing) method shouldn't explicitly free resources if it is called from finalizer, since these resources can be already freed by GC.

    So, Dispose(disposing) should check whether it was called manually or from GC and acts appopriately.

    0 讨论(0)
  • 2020-12-16 05:02

    This is to allow the finalizer to work property, as well as to allow subclasses which derive from your class to dispose properly.

    If you want more detailed info, I wrote a 5 part blog series on IDisposable, and covered the subclassing issue in detail in the Subclass from an IDisposable Class article.

    0 讨论(0)
  • 2020-12-16 05:11

    Regarding the answer,

    Your Dispose(disposing) method shouldn't explicitly free resources if it is called from finalizer, since these resources can be already freed by GC.

    It's missing an important word. This should really say:

    Your Dispose(disposing) method shouldn't explicitly free finalizable (i.e. managed) resources if it is called from finalizer, since these resources can be already freed by GC. Only native resources should be released in a Finalizer.

    I'm pretty sure that the poster meant this but just wasn't explicit enough in the post : )

    0 讨论(0)
提交回复
热议问题