复制对象的引用或将其传递到方法/构造函数中是线程安全的吗?

发布于 2024-11-19 01:13:25 字数 149 浏览 2 评论 0原文

我有一个在线程之间读/写共享的对象。

假设同步正确完成,如果 A 是先前在没有线程运行时初始化的对象,那么当它们开始工作时是线程安全的

Object B = A;

DoSomething(A);

I have an object that is shared in read/write between threads.

Assuming that the synchonization is correctely done, if A is the object previously initialized when no threads are running, when they start working is thread-safe do:

Object B = A;

DoSomething(A);

?

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

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

发布评论

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

评论(1

眼中杀气 2024-11-26 01:13:25

可以安全地共享参考文献;然而,对实际对象的访问可能需要同步。

References can safely be shared; however, access to the actual object may require synchronization.

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