📜  Java中的 LongStream summaryStatistics()

📅  最后修改于: 2022-05-13 01:55:09.357000             🧑  作者: Mango

Java中的 LongStream summaryStatistics()

LongStream summaryStatistics()返回一个 LongSummaryStatistics,描述有关此流元素的各种汇总数据,例如 LongStream 中元素的数量、LongStream 中存在的所有元素的平均值、LongStream 中的最小和最大元素等。这是一个终端操作,即它可以遍历流以产生结果或副作用。

句法 :

LongSummaryStatistics summaryStatistics()

参数 :

  1. LongSummaryStatistics :一个状态对象,用于收集计数、最小值、最大值、总和和平均值等统计信息。

返回值: LongSummaryStatistics summaryStatistics() 返回一个 LongSummaryStatistics 描述有关此流元素的各种摘要数据。

注意: LongStream summaryStatistics() 是缩减的一个特例。归约操作(也称为折叠)采用一系列输入元素,并通过重复应用组合操作将它们组合成单个汇总结果。组合操作可以是找到一组数字的总和或最大值。

示例 1:使用 LongStream summaryStatistics() 获取给定 LongStream 中存在的元素的 LongSummaryStatistics。

// Java code for LongStream summaryStatistics()
// to get various summary data about the
// elements of the stream.
import java.util.stream.LongStream;
import java.util.LongSummaryStatistics;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream
        LongStream stream = LongStream.of(4L, 5L, 6L, 7L);
  
        // Using LongStream summaryStatistics()
        LongSummaryStatistics summary_data =
                                  stream.summaryStatistics();
  
        // Displaying the various summary data
        // about the elements of the stream
        System.out.println(summary_data);
    }
}

输出 :

LongSummaryStatistics{count=4, sum=22, min=4, average=5.500000, max=7}

示例 2:使用 LongStream summaryStatistics() 获取给定范围内元素的 LongSummaryStatistics。

// Java code for LongStream summaryStatistics()
// to get various summary data about the
// elements of the stream.
import java.util.stream.LongStream;
import java.util.LongSummaryStatistics;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream of elements
        // in range [5, 9)
        LongStream stream = LongStream.range(5L, 9L);
  
        // Using LongStream summaryStatistics()
        LongSummaryStatistics summary_data = 
                         stream.summaryStatistics();
  
        // Displaying the various summary data
        // about the elements of the stream
        System.out.println(summary_data);
    }
}

输出 :

LongSummaryStatistics{count=4, sum=26, min=5, average=6.500000, max=8