gpt4 book ai didi

java - 是否有可能找出一个值是否在数组列表中存在两次?

转载 作者:搜寻专家 更新时间:2023-11-01 03:59:11 25 4
gpt4 key购买 nike

我有一个整数数组列表..

ArrayList <Integer> portList = new ArrayList();

我需要检查一个特定的整数是否已经输入了两次。这在 Java 中可能吗?

最佳答案

你可以使用类似这样的东西来查看特定值出现了多少次:

System.out.println(Collections.frequency(portList, 1));
// There can be whatever Integer, and I use 1, so you can understand

要检查某个特定值是否不止一次存在,您可以使用如下方法:

if ( (Collections.frequency(portList, x)) > 1 ){
System.out.println(x + " is in portList more than once ");
}

关于java - 是否有可能找出一个值是否在数组列表中存在两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14177897/

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