找出清單中的公共元素
要辨識兩個清單之間的共用元素,可以使用 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中文網其他相關文章!