IntStream summaryStatistics()返回一个IntSummaryStatistics,它描述有关此流元素的各种摘要数据,例如IntStream中元素数的计数,IntStream中存在的所有元素的平均值,IntStream中的最小和最大元素,等等。这是终端操作,即可能会遍历流以产生结果或副作用。
用法:
IntSummaryStatistics summaryStatistics()
参数:
- IntSummaryStatistics : 用于收集统计信息(例如计数,最小值,最大值,总和和平均值)的状态对象。
返回值:IntSummaryStatistics summaryStatistics()返回一个IntSummaryStatistics,它描述有关此流元素的各种摘要数据。
注意:IntStream summaryStatistics()是缩减的一种特殊情况。归约运算(也称为fold)采用一系列输入元素,并通过重复应用组合操作将它们组合为单个汇总结果。组合运算可以找到一组数字的总和或最大值。
示例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}
相关用法
- Java DoubleStream summaryStatistics()用法及代码示例
- Java LongStream summaryStatistics()用法及代码示例
- Java IntStream of()用法及代码示例
- Java IntStream sum()用法及代码示例
- Java IntStream boxed()用法及代码示例
- Java IntStream mapToObj()用法及代码示例
- Java IntStream skip()用法及代码示例
- Java IntStream mapToLong()用法及代码示例
- Java IntStream findFirst()用法及代码示例
- Java IntStream limit()用法及代码示例
- Java IntStream concat()用法及代码示例
- Java IntStream asLongStream()用法及代码示例
- Java IntStream builder()用法及代码示例
- Java IntStream min()用法及代码示例
- Java IntStream max()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream summaryStatistics() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。