使用析构函数分离事件

时间:2018-07-07 07:27:12

标签: c# .net constructor destructor

在项目中注意到以下代码:

因此有一个自定义的TextBox:

public sealed class CoolTextBox : TextBox
{
    ...
    public CoolTextBox()
    {
        this.DefaultStyleKey = typeof(CoolTextBox);
        this.TextChanged += this.CoolTextBox_TextChanged;
    }

    ~CoolTextBox()
    {
        this.TextChanged -= this.CoolTextBox_TextChanged;
    }
    ...
}

我从未写过这种类型的构造。但是据我所知,Google提供的信息表明,您不应该信任析构函数,因为它们可以随时调用。

我应该删除析构函数吗?

1 个答案:

答案 0 :(得分:2)

终结器仅应用于清理非托管资源。可以以任何顺序调用它们,并具有最长的执行时间。

如果您有任何非托管资源,请使用Dispose pattern

如果您没有任何非托管资源,请实施IDisposable

您应该清除的事件是您要处置的类在另一个寿命更长的对象上的事件中注册的地方。

如果您可以避免完全使用event,甚至更好,因为忘记注销处理程序可以防止垃圾回收。