我刚刚在 MSDN 上阅读有关事件的页面,并且遇到了令我困惑的示例代码片段。
有问题的代码是这样的:
// Make a temporary copy of the event to avoid possibility of
// a race condition if the last subscriber unsubscribes
// immediately after the null check and before the event is raised.
EventHandler<CustomEventArgs> handler = RaiseCustomEvent;
我理解代码的意图,但我看不到那一行是如何复制任何东西的。它所做的只是复制参考;它实际上并没有制作委托实例的深层副本。所以为此,它实际上并没有阻止竞争条件。
我在这里遗漏了一些明显的东西吗?