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


Java LongSummaryStatistics accept(long)用法及代碼示例


Java中LongSummaryStatistics類的accept(long)方法用於將給定的long值接受到此摘要信息中。

用法:

public void accept(long value)

參數:此方法接受值作為要記錄到此LongSummaryStatistics中的參數。


返回值:此方法不返回任何內容。

程序:

// Java program to demonstrate 
// the above method 
  
import java.util.*; 
  
public class LongSummaryStatisticsDemo { 
    public static void main(String[] args) 
    { 
  
        LongSummaryStatistics longSummaryStatistics 
            = new LongSummaryStatistics(); 
  
        List<Integer> list 
            = Arrays.asList(10, 20, 30, 40, 50); 
  
        Iterator<Integer> iterator = list.listIterator(); 
        while (iterator.hasNext()) { 
  
            // Add the integers to the LongSummaryStatistics object 
            longSummaryStatistics.accept(iterator.next()); 
        } 
  
        long value = 456654; 
        longSummaryStatistics.accept(value); 
  
        System.out.println(longSummaryStatistics.toString()); 
    } 
}
輸出:
LongSummaryStatistics{count=6, sum=456804, min=10, average=76134.000000, max=456654}

參考: https://docs.oracle.com/javase/10/docs/api/java/util/LongSummaryStatistics.html#accept(long)



相關用法


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