ArrayList线程安全

发布于 2024-11-03 03:34:30 字数 71 浏览 1 评论 0原文

ArrayList 不是线程安全的。当 arraylist 作为方法参数传递时,线程安全会发生什么情况。方法参数通常是线程安全的

ArrayList is not Thread safe.what happens to thread safety when arraylist is passed as a method parameter.Method Parameters are generally thread safe

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

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

发布评论

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

评论(2

小…楫夜泊 2024-11-10 03:34:30

您不能像那样“添加”线程安全。

如果一个类不是线程安全的,您需要在lock语句或类似的语句中访问它。

You cannot 'add' thread-safety like that.

If a class is not thread-safe you need to access it inside lock statements or something similar.

回眸一笑 2024-11-10 03:34:30

我认为你在堆栈和堆之间有点混乱。作为方法参数传递的 ArrayList 的句柄/引用位于堆栈上,因此是线程安全的,因为该线程拥有的堆栈是唯一可以访问该引用的堆栈。

然而,实际的 ArrayList 存在于堆中,因此许多线程可以同时访问它,因此您需要使用某种形式的同步进行保护,或者,根据 API,您可能可以获得“同步”版本的ArrayList 本身。

I think you're a little muddled up between the stack and the heap. The handle/reference to you ArrayList passed as a method parameter is on the stack and therefore Thread-safe since the stack owned by that Thread is the only one that can access that reference.

However, the actual ArrayList lives in the heap and therefore many threads can access it at the same time and therefore you need to protect with some form of synchronization or, depending on the API, you may be able to get a "Synchronized" version of the ArrayList itself.

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