作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个整数数组列表..
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/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!