作者:手机用户2602938875 | 来源:互联网 | 2022-12-23 20:11
1> Guy..:
你可以使用retainAll.ArrayList
如果您不想影响现有列表中的值,请使用new .
List common = new ArrayList<>(mapMatchvalues.get("key1"));
common.retainAll(mapMatchvalues.get("key2"));
common
将包含列表中的匹配元素.
如果地图中有多个条目,则可以循环显示
// initialize the common list with List
List common = new ArrayList<>(mapMatchvalues.entrySet().iterator().next().getValue());
for (List list : mapMatchvalues.values()) {
common.retainAll(list);
}