Java中的DoubleSummaryStatistics类的accept()方法用于将给定值接受到此摘要信息中。
用法:
public void accept(double value)
参数:此方法接受值作为要记录在此DoubleSummaryStatistics中的参数。
返回值:此方法不返回任何内容。
程序:
// Java program to demonstrate
// the above method
import java.util.*;
public class DoubleSummaryStatisticsDemo {
public static void main(String[] args)
{
DoubleSummaryStatistics doubleSummaryStatistics
= new DoubleSummaryStatistics();
List<Double> list = new LinkedList<>();
list.add(95.7);
list.add(234.6767);
list.add(243.5);
list.add(50.0);
list.add(45.6);
list.add(45664.0);
list.add(7007.777);
list.add(5677.0);
list.add(0.0);
list.add(45664.7);
Iterator<Double> iterator = list.listIterator();
while (iterator.hasNext()) {
// Add the doubles to the
// DoubleSummaryStatistics object
doubleSummaryStatistics
.accept(iterator.next());
}
double value = 34.45;
System.out.println("Inserting " + value
+ " using accept() ");
doubleSummaryStatistics
.accept(value);
System.out.println(doubleSummaryStatistics
.toString());
}
}
输出:
Inserting 34.45 using accept()
DoubleSummaryStatistics{count=11, sum=104717.403700, min=0.000000, average=9519.763973, max=45664.700000}
参考: https://docs.oracle.com/javase/9/docs/api/java/util/DoubleSummaryStatistics.html#accept-double-
相关用法
- Java DoubleSummaryStatistics combine()用法及代码示例
- Java DoubleSummaryStatistics getCount()用法及代码示例
- Java DoubleSummaryStatistics getAverage()用法及代码示例
- Java DoubleSummaryStatistics getMin()用法及代码示例
- Java DoubleSummaryStatistics getSum()用法及代码示例
- Java DoubleSummaryStatistics getMax()用法及代码示例
- Java IntSummaryStatistics accept()用法及代码示例
- Java LongSummaryStatistics accept(int)用法及代码示例
- Java LongSummaryStatistics accept(long)用法及代码示例
- Java DoubleStream.Builder accept()用法及代码示例
- Java IntStream.Builder accept()用法及代码示例
- Java Stream.Builder accept()用法及代码示例
- Java LongStream.Builder accept()用法及代码示例
注:本文由纯净天空筛选整理自ShubhamMaurya3大神的英文原创作品 DoubleSummaryStatistics accept() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。