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


Java IntSummaryStatistics getMax()用法及代碼示例


Java中IntSummaryStatistics類的getMax()方法用於獲取此IntSummaryStatistics中的最大記錄數。

用法:

public int getMax()

參數:此方法不接受任何值作為參數。


返回值:此方法返回此IntSummaryStatistics中的最大記錄數。

程序:

// Java program to demonstrate 
// the above method 
  
import java.util.*; 
  
public class IntSummaryStatisticsDemo { 
    public static void main(String[] args) 
    { 
  
        IntSummaryStatistics intSummaryStatistics 
            = new IntSummaryStatistics(); 
  
        List<Integer> list 
            = Arrays.asList(10, 20, 30, 40, 50); 
  
        Iterator<Integer> iterator = list.listIterator(); 
        while (iterator.hasNext()) { 
  
            // Add the integers to the IntSummaryStatistics object 
            intSummaryStatistics.accept(iterator.next()); 
        } 
  
        System.out.println("The maximum of values is "
                           + intSummaryStatistics.getMax()); 
    } 
}
輸出:
The maximum of values is 50

參考: https://docs.oracle.com/javase/10/docs/api/java/util/IntSummaryStatistics.html#getMax()



相關用法


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