gpt4 book ai didi

java - 两个列表中的共同元素

转载 作者:IT老高 更新时间:2023-10-28 11:36:17 37 4
gpt4 key购买 nike

我有两个 ArrayList 对象,每个对象都包含三个整数。我想找到一种方法来返回两个列表的共同元素。有谁知道我怎么能做到这一点?

最佳答案

使用 Collection#retainAll() .

listA.retainAll(listB);
// listA now contains only the elements which are also contained in listB.

如果您想避免 listA 中的更改受到影响,那么您需要创建一个新的。

List<Integer> common = new ArrayList<Integer>(listA);
common.retainAll(listB);
// common now contains only the elements which are contained in listA and listB.

关于java - 两个列表中的共同元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5943330/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com