首頁 >Java >java教程 >在迭代期間從 ArrayList 中刪除時如何避免 ConcurrentModificationException?

在迭代期間從 ArrayList 中刪除時如何避免 ConcurrentModificationException?

Barbara Streisand
Barbara Streisand原創
2024-12-19 08:51:13483瀏覽

How to Avoid ConcurrentModificationException When Removing from an ArrayList During Iteration?

在迭代期間從 ArrayList 中刪除元素時避免出現「ConcurrentModificationException」

在迭代期間嘗試從 ArrayList中刪除元素時,例如以下情況例如:

for (String str : myArrayList) {
    if (someCondition) {
        myArrayList.remove(str);
    }
}

很可能會遇到「並發修改異常。」出現這種情況是因為ArrayList 在迭代過程中被修改,這違反了快速失敗屬性。

解決方案:使用迭代器

要避免此異常,請使用迭代器並呼叫remove()方法:

Iterator<String> iter = myArrayList.iterator();

while (iter.hasNext()) {
    String str = iter.next();

    if (someCondition)
        iter.remove();
}

透過使用Iterator,處理ArrayList在迭代過程中的修改在內部確保不會拋出異常。

以上是在迭代期間從 ArrayList 中刪除時如何避免 ConcurrentModificationException?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn