Kla*_*sos 3 java list arraylist
我需要编写一个简单的函数来删除List包含该类对象的所有条目Elem.我写了这个函数removeAllElements,但是如果它的大小List<Elem>大于1 则它不起作用.
public class Test {
public static void main(String[] args) {
Work w = new Work();
w.addElement(new Elem("a",new Integer[]{1,2,3}));
w.addElement(new Elem("b",new Integer[]{4,5,6}));
w.removeAllElements(); // It does not work for me.
}
}
public class Work {
private List<Elem> elements = new ArrayList<Elem>();
public void addElement(Elem e) {
this.elements.add(e);
}
public void removeAllElements() {
Iterator itr = this.elements.iterator();
while(itr.hasNext()) {
Object e = itr.next();
this.elements.remove(e);
}
}
}
public class Elem {
private String title;
private Integer[] values;
public Elem(String t,Integer v) {
this.title = t;
this.values = v;
}
}
Run Code Online (Sandbox Code Playgroud)
编辑#1 错误消息如下:
Exception in thread "AWT-EventQueue-0" java.util.ConcurrentModificationException
at java.util.AbstractList$Itr.checkForComodification(Unknown Source)
at java.util.AbstractList$Itr.next(Unknown Source)
Run Code Online (Sandbox Code Playgroud)
JB *_*zet 11
代码无法编译.什么是this.tokens?
无论如何,如果你想在迭代时删除一个元素,你必须使用迭代器的remove方法来做它:
itr.next();
itr.remove();
Run Code Online (Sandbox Code Playgroud)
不过,你的removeAllElements方法可以做到this.elements.clear().更直接,更有效率.
在迭代时必须使用itr.remove()而不是this.tokens.remove(e)在删除元素时使用.
有关更多详细信息,请查看Iterator.remove()
| 归档时间: |
|
| 查看次数: |
22909 次 |
| 最近记录: |