假设你的一套包含您要删除的字符串,你可以使用的
keySet方法和
map.keySet().removeAll(keySet);。
keySet返回此映射中包含的键的Set视图。该集合由地图支持,因此对地图的更改会反映在集合中,反之亦然。
人为的例子:
Map<String, String> map = new HashMap<>();map.put("a", "");map.put("b", "");map.put("c", "");Set<String> set = new HashSet<> ();set.add("a");set.add("b");map.keySet().removeAll(set);System.out.println(map); //only contains "c"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)