概述
前言:
关于Java从Map
中删除元素的使用,可以使用删除单个元素的事实Map.remove
。
示例:
初始化一个Map对象
Map<Integer, String> map = new HashMap<>();
map.put(1, "value 1");
map.put(2, "value 2");
map.put(3, "value 3");
map.put(4, "value 4");
map.put(5, "value 5");复制代码
有几种方法可以删除元素:
for(Iterator<Integer> iterator = map.keySet().iterator(); iterator.hasNext(); ) {
Integer key = iterator.next();
if(key != 1) {
iterator.remove();
}
}复制代码
如果不使用Java 8+,就可以使用Iterator
以防止 ConcurrentModificationException异常
。
如果您使用的
较新
版本的Java(8+),那么您可以这样:
// 通过value移除
map.values().removeIf(value -> !value.contains("1"));
// 通过key移除
map.keySet().removeIf(key -> key != 1);
// 通过键/值的输入/组合删除
map.entrySet().removeIf(entry -> entry.getKey() != 1);复制代码
removeIf
是Collection
s 的方法。一个Map
本身不是一个Collection
,也无法访问removeIf
自己。但是通过使用:values
,keySet
或entrySet
此实现Collection
允许removeIf
在其上调用。
内容返回的values
,keySet
而且entrySet
是非常重要的。以下是JavaDoc的说明摘要values
:
* Returns a {@link Collection} view of the values contained in this map.
* The collection is backed by the map, so changes to the map are
* reflected in the collection, and vice-versa.
*
* The collection supports element removal, which removes the corresponding
* mapping from the map, via the {@code Iterator.remove},
* {@code Collection.remove}, {@code removeAll},
* {@code retainAll} and {@code clear} operations.复制代码
这个JavaDoc解释了Collection
返回的values
是由它支持的。文档指定Iterator.remove
可以使用。此外实现removeIf
与Iterator
示例如下。
default boolean removeIf(Predicate<? super E> filter) {
Objects.requireNonNull(filter);
boolean removed = false;
final Iterator<E> each = iterator();
while (each.hasNext()) {
if (filter.test(each.next())) {
each.remove();
removed = true;
}
}
return removed;
}复制代码
总结:
使用 values
,keySet
或entrySet
接入removeIf 更
容易移除Map中的元素。
转载于:https://juejin.im/post/5cf600ec518825710c63806b
最后
以上就是繁荣枫叶为你收集整理的Java删除Map中元素的全部内容,希望文章能够帮你解决Java删除Map中元素所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复