當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java IntStream summaryStatistics()用法及代碼示例


IntStream summaryStatistics()返回一個IntSummaryStatistics,它描述有關此流元素的各種摘要數據,例如IntStream中元素數的計數,IntStream中存在的所有元素的平均值,IntStream中的最小和最大元素,等等。這是終端操作,即可能會遍曆流以產生結果或副作用。

用法:

IntSummaryStatistics summaryStatistics()

參數:


  1. 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}


相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 IntStream summaryStatistics() in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。