Java中DoubleSummaryStatistics类的getMin()方法用于获取此DoubleSummaryStatistics中的最少记录。
用法:
public double getMin()
参数:此方法不接受任何值作为参数。
返回值:此方法返回此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());
}
System.out.println(doubleSummaryStatistics
.toString());
System.out.println("The minimum of values is "
+ doubleSummaryStatistics
.getMin());
}
}
输出:
DoubleSummaryStatistics{count=10, sum=104682.953700, min=0.000000, average=10468.295370, max=45664.700000}
The minimum of values is 0.0
参考: https://docs.oracle.com/javase/10/docs/api/java/util/DoubleSummaryStatistics.html#getMin()
相关用法
- Java DoubleSummaryStatistics getSum()用法及代码示例
- Java DoubleSummaryStatistics combine()用法及代码示例
- Java DoubleSummaryStatistics getCount()用法及代码示例
- Java DoubleSummaryStatistics accept()用法及代码示例
- Java DoubleSummaryStatistics getMax()用法及代码示例
- Java DoubleSummaryStatistics getAverage()用法及代码示例
- Java IntSummaryStatistics getMin()用法及代码示例
- Java LongSummaryStatistics getMin()用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代码示例
注:本文由纯净天空筛选整理自ShubhamMaurya3大神的英文原创作品 DoubleSummaryStatistics getMin() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。