4

打电话不安全吗:

组件.Dispose(); (如果我检查空)

如果我将代码更改为此,则从终结器:

~MyResource()
{
    Dispose();
}
public void Dispose()
{
 // Check to see if Dispose has already been called.
        if(!this.disposed)
        {
            if(component != null) component.Dispose();   // !!! //

            CloseHandle(handle);
            handle = IntPtr.Zero;

            disposed = true;

        }
    GC.SuppressFinalize(this);
}

我知道这行得通——但它安全吗?

(从下面的例子?)

代码示例:(更改代码之前)

http://msdn.microsoft.com/en-us/library/system.idisposable.dispose.aspx

using System;
using System.ComponentModel;

// The following example demonstrates how to create
// a resource class that implements the IDisposable interface
// and the IDisposable.Dispose method.

public class DisposeExample
{
// A base class that implements IDisposable.
// By implementing IDisposable, you are announcing that
// instances of this type allocate scarce resources.
public class MyResource: IDisposable
{
    // Pointer to an external unmanaged resource.
    private IntPtr handle;
    // Other managed resource this class uses.
    private Component component = new Component();
    // Track whether Dispose has been called.
    private bool disposed = false;

    // The class constructor.
    public MyResource(IntPtr handle)
    {
        this.handle = handle;
    }

    // Implement IDisposable.
    // Do not make this method virtual.
    // A derived class should not be able to override this method.
    public void Dispose()
    {
        Dispose(true);
        // This object will be cleaned up by the Dispose method.
        // Therefore, you should call GC.SupressFinalize to
        // take this object off the finalization queue
        // and prevent finalization code for this object
        // from executing a second time.
        GC.SuppressFinalize(this);
    }

    // Dispose(bool disposing) executes in two distinct scenarios.
    // If disposing equals true, the method has been called directly
    // or indirectly by a user's code. Managed and unmanaged resources
    // can be disposed.
    // If disposing equals false, the method has been called by the
    // runtime from inside the finalizer and you should not reference
    // other objects. Only unmanaged resources can be disposed.
    protected virtual void Dispose(bool disposing)
    {
        // Check to see if Dispose has already been called.
        if(!this.disposed)
        {
            // If disposing equals true, dispose all managed
            // and unmanaged resources.
            if(disposing)
            {
                // Dispose managed resources.
                component.Dispose();
            }

            // Call the appropriate methods to clean up
            // unmanaged resources here.
            // If disposing is false,
            // only the following code is executed.
            CloseHandle(handle);
            handle = IntPtr.Zero;

            // Note disposing has been done.
            disposed = true;

        }
    }

    // Use interop to call the method necessary
    // to clean up the unmanaged resource.
    [System.Runtime.InteropServices.DllImport("Kernel32")]
    private extern static Boolean CloseHandle(IntPtr handle);

    // Use C# destructor syntax for finalization code.
    // This destructor will run only if the Dispose method
    // does not get called.
    // It gives your base class the opportunity to finalize.
    // Do not provide destructors in types derived from this class.
    ~MyResource()
    {
        // Do not re-create Dispose clean-up code here.
        // Calling Dispose(false) is optimal in terms of
        // readability and maintainability.
        Dispose(false);
    }
  }
  public static void Main()
  {
    // Insert code here to create
    // and use the MyResource object.
  }
}
4

2 回答 2

4

在不知道“组件”的实现细节的情况下,很难确定这样做是否安全。对象的终结是无序的并且不尊重包含层次结构,因此虽然“组件”实例可能不是null,但在您调用它时它可能已经终结Dispose。通常Dispose,编写方法时不会考虑到这种类型的安全性,因为它们只希望在对象完成之前被调用。

在你甚至想要考虑做一些聪明的事情之前,比如在终结器中触摸其他对象,请阅读Chris Brumme关于该主题的博客文章;这是一个很好的起点

通常,除非在非常特殊的情况下,并且您知道Dispose所包含对象的方法即使在完成后调用时也会按预期运行,我认为您所询问的模式不安全并且会坚持推荐的模式传递一个bool disposing参数并且只接触托管对象,如果它是true

于 2012-07-06T14:55:40.887 回答
2

在 .net 中,可以保证通过任何方式访问的任何对象都存在,可以访问此类对象的字段,并且可以分派对该对象的属性访问或方法调用,就像在任何其他情况下一样。唯一不能保证的是系统是否已经Finalize在引用的对象上运行了该方法。完全有可能由于系统已经Finalize在一个对象上运行,以前会做一些有用的事情的方法将不再能够这样做,但这是对象Finalize()例程的函数,与垃圾收集器本身。

于 2012-07-06T16:23:00.480 回答