为了缓解竞争条件并确保代码中的线程安全,请考虑使用 Collections.synchronizedList() 方法。此方法通过同步访问包装现有的 ArrayList,轻松保护其操作。
以下是将其合并到现有代码中的方法:
<code class="java">public class Race implements RaceListener { private Thread[] racers; // Use Collections.synchronizedList() to make the ArrayList thread-safe private List<RaceCar> finishingOrder = Collections.synchronizedList(new ArrayList<>(numberOfRaceCars)); // ... Remaining code ... }</code>
通过利用 Collections.synchronizedList(),您的 ArrayList 、finishingOrder 完全受到并发访问的保护。它确保当多个线程竞争访问时,添加或删除元素等操作不会导致不可预测的行为或数据损坏。
以上是如何使用 Collections.synchronizedList() 在 Java 中使 ArrayList 线程安全?的详细内容。更多信息请关注PHP中文网其他相关文章!