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


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


Java中IntSummaryStatistics類的getMin()方法用於獲取此IntSummaryStatistics中的最少記錄。

用法:

public int getMin()

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


返回值:此方法返回此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 minimum of values is "
                           + intSummaryStatistics.getMin()); 
    } 
}
輸出:
The minimum of values is 10

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



相關用法


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