此方法除去接受一組字符串,然後刪除偶數長度的一組的所有字符串。 的問題是,我知道,所以我必須給我們一個迭代器,但是,我怎麼刪除特定的「元素」從一組集不通過元素算?如何從一組
private static void removeEvenLength(Set<String> thing) {
Iterator<String> stuff = thing.iterator();
while (stuff.hasNext()) {
String temp = stuff.next();
if (temp.length() %2 == 0) {
temp.remove(); // What do I do here?
}
}
}
可能重複迭代器(http://stackoverflow.com/questions/8892027/remove-entries-from-the-list-using-iterator) – SpringLearner