Iterator
while (iterator.hasNext()) {
if (iterator.next() < threshold) {
iterator.remove();
}
}
当然,如果您使用的是Java 8,它会容易得多:
hmap.values().removeIf(value -> value < threshold);
表的工作原理完全相同;只需使用
table.values()代替
hmap.values()。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)