Java中的 IntStream summaryStatistics()
IntStream summaryStatistics()返回一个 IntSummaryStatistics,描述有关此流元素的各种汇总数据,例如 IntStream 中元素的计数、IntStream 中存在的所有元素的平均值、IntStream 中的最小和最大元素等。这是一个终端操作,即它可以遍历流以产生结果或副作用。
句法 :
IntSummaryStatistics summaryStatistics()
参数 :
- IntSummaryStatistics :一个状态对象,用于收集计数、最小值、最大值、总和和平均值等统计信息。
返回值: IntSummaryStatistics summaryStatistics() 返回一个 IntSummaryStatistics 描述有关此流元素的各种摘要数据。
注意: IntStream summaryStatistics() 是归约的一个特例。归约操作(也称为折叠)采用一系列输入元素,并通过重复应用组合操作将它们组合成单个汇总结果。组合操作可以是找到一组数字的总和或最大值。
示例 1:使用 IntStream summaryStatistics() 获取给定 IntStream 中存在的元素的 IntSummaryStatistics。
// Java code for IntStream summaryStatistics()
// to get various summary data about the
// elements of the stream.
import java.util.stream.IntStream;
import java.util.IntSummaryStatistics;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream
IntStream stream = IntStream.of(4, 5, 6, 7);
// Using IntStream summaryStatistics()
IntSummaryStatistics summary_data =
stream.summaryStatistics();
// Displaying the various summary data
// about the elements of the stream
System.out.println(summary_data);
}
}
输出 :
IntSummaryStatistics{count=4, sum=22, min=4, average=5.500000, max=7}
示例 2:使用 IntStream summaryStatistics() 获取给定范围内元素的 IntSummaryStatistics。
// Java code for IntStream summaryStatistics()
// to get various summary data about the
// elements of the stream.
import java.util.stream.IntStream;
import java.util.IntSummaryStatistics;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream of elements
// in range [5, 9)
IntStream stream = IntStream.range(5, 9);
// Using IntStream summaryStatistics()
IntSummaryStatistics summary_data =
stream.summaryStatistics();
// Displaying the various summary data
// about the elements of the stream
System.out.println(summary_data);
}
}
输出 :
IntSummaryStatistics{count=4, sum=26, min=5, average=6.500000, max=8}