从集合中删除元素
2022-09-02 02:29:28
我正在尝试删除集合中所有长度相等的字符串。这是到目前为止我的代码,但我在增强型循环中从迭代器获取索引时遇到问题。
public static void removeEvenLength(Set<String> list) {
for (String s : list) {
if (s.length() % 2 == 0) {
list.remove(s);
}
}
}