📌  相关文章
📜  Java番石榴 |带有示例的 Doubles.max() 方法

📅  最后修改于: 2022-05-13 01:54:32.616000             🧑  作者: Mango

Java番石榴 |带有示例的 Doubles.max() 方法

Doubles.max()是 Guava 库中 Doubles 类的一种方法,用于查找数组中存在的最大值。此方法返回的值是指定数组中最大的双精度值。

句法:

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

参考: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#max(double…)