这有多线程安全?

发布于 2024-11-04 09:35:02 字数 119 浏览 0 评论 0原文

在我的 Color 类中,我有一个私有静态布尔值,它确定新的 Color 是否应该预乘其 alpha。由于该值仅被读取(并且仅在创建任何辅助线程之前设置),因此在 2 个线程上实例 2 种颜色是否安全?

谢谢

In my Color class, I have a private static bool which determines if a new Color should premultiply its alpha. Since this value is only ever read (and only set before any secondary threads are created), is it safe to instance 2 colors on 2 threads?

Thanks

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

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

发布评论

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

评论(1

各空 2024-11-11 09:35:02

从多个线程读取内存是线程安全的。当你同时改变和读取记忆时,你就会遇到麻烦。

Reading memory from multiple threads is thread safe. Its when you're changing and reading memory at the same time that you run into troubles.

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