gpt4 book ai didi

java - 集合 - Iterator.remove() 与 Collection.remove()

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:27:38 29 4
gpt4 key购买 nike

根据太阳,

"Iterator.remove is the only safe way to modify a collection during iteration; the behavior is unspecified if the underlying collection is modified in any other way while the iteration is in progress."

我有两个问题:

  1. 是什么让这个操作“Iterator.remove()”比其他操作更稳定?
  2. 如果“Collection.remove()”方法在大多数用例中都没有用,他们为什么要提供该方法?

最佳答案

首先,Collection.remove() 非常有用。它适用于很多用例,可能比 Iterator.remove() 更适用。

但是,后者解决了一个特定问题:它允许您在遍历集合时修改集合

Iterator.remove()解决的问题如下图所示:

    List<Integer> l = new ArrayList<Integer>(Arrays.asList(1, 2, 3, 4));
for (int el : l) {
if (el < 3) {
l.remove(el);
}
}

此代码无效,因为 l.remove()l 的迭代过程中被调用。

正确的写法如下:

    Iterator<Integer> it = l.iterator();
while (it.hasNext()) {
int el = it.next();
if (el < 3) {
it.remove();
}
}

关于java - 集合 - Iterator.remove() 与 Collection.remove(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14200489/

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