爪哇番石榴| Doubles.max()方法带示例
原文:https://www . geesforgeks . org/Java-guava-double-max-method-with-examples/
双打. max() 是番石榴库中双打类的一种方法,用于查找数组中最大的值。此方法返回的值是指定数组中最大的双精度值。
*语法:*
public static double max(double... array)
*参数:*该方法取一个强制参数 数组 ,该数组是非空的双值数组。
*返回值:*该方法返回一个双精度值,该值是指定数组中的最大值。
*异常:*阵为空则法掷IllegalArgumentException。
下面的程序说明了上述方法的使用:
*例 1 :*
// Java code to show implementation of
// Guava's Doubles.max() method
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Double array
double[] arr = { 2.2, 4.3, 6.4, 10.2,
0, -5.2, 15.5, 7.4 };
// Using Doubles.max() method to get the
// maximum value present in the array
System.out.println("Maximum value is : "
+ Doubles.max(arr));
}
}
**输出:
Maximum value is : 15.5
例 2 :
// Java code to show implementation of
// Guava's Doubles.max() method
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Double array
double[] arr = {};
try {
// Using Doubles.max() method to get the
// maximum value present in the array
// This should raise "IllegalArgumentException"
// as the array is empty
System.out.println("Maximum value is : "
+ Doubles.max(arr));
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.lang.IllegalArgumentException
版权属于:月萌API www.moonapi.com,转载请注明出处