我应该声明 WaitHandle(s) 易失性吗?

发布于 2024-10-10 03:34:14 字数 72 浏览 2 评论 0原文

多个线程使用的 WaitHandle 和其他同步对象是否应该声明为 易失性

Should WaitHandles and other synchronization objects which are used by multiple threads be declared as volatile ?

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

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

发布评论

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

评论(1

战皆罪 2024-10-17 03:34:14

易失性仅在您重新分配字段时才相关。
对于事件处理程序,编译器将处理线程安全;你不应该担心它。

对于其他同步对象,您(可能)不应该首先重新分配变量。 (这与突变不同)
使用readonly,而不是易失性

volatile is only relevant if you are re-assigning a field.
For EventHandlers, the compiler will handle thread-safety; you shouldn't worry about it.

For other synchronization objects, you (probably) shouldn't be reassigning variables in the first place. (that's not the same as mutation)
Use readonly, not volatile.

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