Doubles.max() es un método de Doubles Class en la biblioteca Guava que se usa para encontrar el mayor valor presente en una array. El valor devuelto por este método es el valor doble más grande de la array especificada.
Sintaxis:
public static double max(double... array)
Parámetros: este método toma una array de parámetros obligatoria que es una array no vacía de valores dobles .
Valor de retorno: este método devuelve un valor doble que es el valor máximo en la array especificada.
Excepciones: el método arroja IllegalArgumentException si la array está vacía.
Los siguientes programas ilustran el uso del método anterior:
Ejemplo 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
Ejemplo 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
Referencia: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#max(double…)
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA