Java中的 IntSummaryStatistics getCount() 方法及示例
Java中 IntSummaryStatistics 类的getCount()方法用于获取此 IntSummaryStatistics 中的记录数。
句法:
public long getCount()
参数:此方法不接受任何值作为参数。
返回值:此方法返回此 IntSummaryStatistics 中的记录计数。
程序:
// Java program to demonstrate
// the above method
import java.util.*;
public class IntSummaryStatisticsDemo {
public static void main(String[] args)
{
IntSummaryStatistics intSummaryStatistics
= new IntSummaryStatistics();
List list
= Arrays.asList(10, 20, 30, 40, 50);
Iterator iterator = list.listIterator();
while (iterator.hasNext()) {
// Add the integers to the IntSummaryStatistics object
intSummaryStatistics.accept(iterator.next());
}
System.out.println("The count of values is "
+ intSummaryStatistics.getCount());
}
}
输出:
The count of values is 5
参考: https: Java/util/IntSummaryStatistics.html#getCount()