Java中的 LongSummaryStatistics accept(long) 方法和示例
Java中LongSummaryStatistics 类的accept(long)方法用于将给定的 long 值接受到此摘要信息中。
句法:
public void accept(long value)
参数:此方法接受值作为要记录到此 LongSummaryStatistics 中的参数。
返回值:此方法不返回任何内容。
程序:
// Java program to demonstrate
// the above method
import java.util.*;
public class LongSummaryStatisticsDemo {
public static void main(String[] args)
{
LongSummaryStatistics longSummaryStatistics
= new LongSummaryStatistics();
List list
= Arrays.asList(10, 20, 30, 40, 50);
Iterator iterator = list.listIterator();
while (iterator.hasNext()) {
// Add the integers to the LongSummaryStatistics object
longSummaryStatistics.accept(iterator.next());
}
long value = 456654;
longSummaryStatistics.accept(value);
System.out.println(longSummaryStatistics.toString());
}
}
输出:
LongSummaryStatistics{count=6, sum=456804, min=10, average=76134.000000, max=456654}
参考: https: Java/util/LongSummaryStatistics.html#accept(long)