gpt4 book ai didi

java - 是否有可能在 Java 中获取 for-each 循环的索引

转载 作者:太空狗 更新时间:2023-10-29 22:36:50 26 4
gpt4 key购买 nike

给定下面的代码,是否可以在 Java 中使用这种 for 循环样式从属性列表中删除 p 的索引?

List<Properties> propertiesList = new ArrayList<Properties>();
String keyToDelete = "blah";

for(Properties p : propertiesList) {
if(p.getKey().equals(keyToDelete)) {
propertiesList.remove(index) //How to remove the element at index 'p'
}
}

这就是我用另一个 for 循环完成这个的方法

List<Properties> propertiesList = new ArrayList<Properties>();
String keyToDelete = "blah";

for(int i = 0; i < propertiesList.size(); i++) {
if(p.getKey().equals(keyToDelete)) {
propertiesList.remove(i);
}
}

最佳答案

执行此操作的方法是使用显式 Iterator (没有像老学校那样的学校!)。

Iterator<Properties> it = propertiesList.iterator();
while (it.hasNext()) {
if (it.next().getKey().equals(keyToDelete)) {
it.remove();
}
}

与列表上的删除方法不同,remove method on the iterator不会导致并发修改。这是从您正在迭代的集合中删除元素的唯一安全方法。正如该方法的 javadoc 所说:

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method.

关于java - 是否有可能在 Java 中获取 for-each 循环的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11564262/

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