gpt4 book ai didi

java - 同步列表与同步列表中的对象

转载 作者:行者123 更新时间:2023-11-30 07:14:09 28 4
gpt4 key购买 nike

假设我有以下列表:

List<MyObject> myObjectsList = new ArrayList<>();

如果我这样做:

synchronized(myObjectsList )
{
//some code runs here...
}

这是否意味着列表中的每个对象都是线程安全的,或者如果其他线程引用了列表中的某些对象可以修改它?

最佳答案

... or if some other thread has a reference to some of the objects inside the list can modify it?

是的,他们可以修改对象,因为他们可以获得对您的 MyObject 实例的锁定。

关于java - 同步列表与同步列表中的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18610899/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com