Java中DoubleSummaryStatistics类的combine()方法用于将给定的其他DoubleSummaryStatistics与此DoubleSummaryStatistics组合。
用法:
public void combine(DoubleSummaryStatistics otherDoubleSummaryStatistics)
参数:此方法接受otherDoubleSummaryStatistics作为要组合到此DoubleSummaryStatistics中的参数。
返回值:此方法不返回任何内容。
异常:如果otherDoubleSummaryStatistics为null,则此方法引发NullPointerException。
程序:
// 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);
Iterator<Double> iterator = list.listIterator();
while (iterator.hasNext()) {
// Add the doubles to the
// DoubleSummaryStatistics object
doubleSummaryStatistics
.accept(iterator.next());
}
System.out.println("First DdoubleSummaryStatistics: "
+ doubleSummaryStatistics
.toString());
DoubleSummaryStatistics otherDoubleSummaryStatistics
= new DoubleSummaryStatistics();
List<Double> list1 = new LinkedList<>();
list1.add(45664.0);
list1.add(7007.777);
list1.add(5677.0);
list1.add(0.0);
list1.add(45664.7);
Iterator<Double> iterator1 = list1.listIterator();
while (iterator1.hasNext()) {
// Add the doubles to the
// DoubleSummaryStatistics object
otherDoubleSummaryStatistics
.accept(iterator1.next());
}
System.out.println("Second DdoubleSummaryStatistics: "
+ otherDoubleSummaryStatistics
.toString());
System.out.println("Combining both DdoubleSummaryStatistics"
+ " using combine() ");
doubleSummaryStatistics.combine(otherDoubleSummaryStatistics);
System.out.println("Combined DdoubleSummaryStatistics: "
+ doubleSummaryStatistics.toString());
}
}
First DdoubleSummaryStatistics:
DoubleSummaryStatistics{count=5, sum=669.476700, min=45.600000, average=133.895340, max=243.500000}
Second DdoubleSummaryStatistics:
DoubleSummaryStatistics{count=5, sum=104013.477000, min=0.000000, average=20802.695400, max=45664.700000}Combining both DdoubleSummaryStatistics using combine()
Combined DdoubleSummaryStatistics:
DoubleSummaryStatistics{count=10, sum=104682.953700, min=0.000000, average=10468.295370, max=45664.700000}
相关用法
- Java DoubleSummaryStatistics getMax()用法及代码示例
- Java DoubleSummaryStatistics getAverage()用法及代码示例
- Java DoubleSummaryStatistics getCount()用法及代码示例
- Java DoubleSummaryStatistics getMin()用法及代码示例
- Java DoubleSummaryStatistics accept()用法及代码示例
- Java DoubleSummaryStatistics getSum()用法及代码示例
- Java Java lang.Long.lowestOneBit()用法及代码示例
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Java lang.Long.highestOneBit()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
注:本文由纯净天空筛选整理自ShubhamMaurya3大神的英文原创作品 DoubleSummaryStatistics combine() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。