C#语言的事件处理程序

发布于 2024-12-09 15:41:43 字数 364 浏览 0 评论 0原文

class Plane 
{
    public event EventHandler Land;

    protected void OnLand()
    {
        if ( null != Land ) 
        {
            Land( this, null );
        }
    }
}

这是事件处理程序的最佳实践:

EventHandler temp = Land;
if ( null != temp ) 
{
    temp( this, null );
}

这真的有必要吗?在什么情况下 temp 可能与 Land 不同?

class Plane 
{
    public event EventHandler Land;

    protected void OnLand()
    {
        if ( null != Land ) 
        {
            Land( this, null );
        }
    }
}

it is event handler best practice to do instead:

EventHandler temp = Land;
if ( null != temp ) 
{
    temp( this, null );
}

Is that truly necessary? In what case could temp be different from Land?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晨曦÷微暖 2024-12-16 15:41:43

在多线程访问的情况下,我相信。如果您不缓存引用,则另一个线程可以在您的防护之后但在您触发之前将其清空。

In the case of multi-threaded access, I believe. If you don't cache the reference, another thread can null it out after your guard but before you fire.

萤火眠眠 2024-12-16 15:41:43

如果您有许多线程并发修改Land

If you have concurrency with many threads modifying Land.

我做我的改变 2024-12-16 15:41:43

在测试和引发之间,最后一个处理程序会被其他线程从列表中删除。

事件的调用列表在更改时将被复制,并且临时引用仍将保留原始列表。

请参阅:C# 事件和线程安全

When in between the test and the raise the last handler is removed from the list by an other thread.

the invokation list of the event will be copied when it changes and the temp reference will still hold the original list.

See: C# Events and Thread Safety

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文