查找列表中的公共元素
要识别两个列表之间的共享元素,可以使用 Collection#retainAll()。通过利用此方法,您可以方便地仅保留两个列表中存在的元素,从而有效地消除任一列表中的任何唯一元素。
listA.retainAll(listB); // listA now contains only the elements also contained in listB.
或者,如果您希望保留原始 listA,您可以创建一个用于保存公共元素的新列表:
List<Integer> common = new ArrayList<>(listA); common.retainAll(listB); // common now contains only the elements contained in both listA and listB.
对于流爱好者来说,一个聪明的方法是使用 Stream#filter() 和基于包含的过滤Collection#contains():
List<Integer> common = listA.stream().filter(listB::contains).toList(); // common now contains only the elements contained in both listA and listB.
虽然这可能看起来更简洁,但执行速度至少慢了一倍。
以上是如何在 Java 中查找两个列表之间的共同元素?的详细内容。更多信息请关注PHP中文网其他相关文章!