Función ints max() | guayaba | Java

Ints .max() de Guava devuelve el mayor valor presente en la array.

Sintaxis:

public static int max(int... array)

Parámetros: este método toma la array como parámetro, que es una array no vacía de valores int .

Valor devuelto: este método devuelve el valor presente en la array que es mayor o igual que todos los demás valores de la array.

Excepciones: el método arroja IllegalArgumentException si la array está vacía.

Los siguientes ejemplos ilustran el método Ints.max():

Ejemplo 1:

// Java code to show implementation of
// Guava's Ints.max() method
  
import com.google.common.primitives.Ints;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
        // Creating an integer array
        int[] arr = { 2, 4, 6, 10, 0, -5, 15, 7 };
  
        // Using Ints.max() method to get the
        // maximum value present in the array
        System.out.println("Maximum value is: "
                           + Ints.max(arr));
    }
}
Producción:

Maximum value is: 15

Ejemplo 2: Para demostrar IllegalArgumentException

// Java code to show implementation of
// Guava's Ints.max() method
  
import com.google.common.primitives.Ints;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        try {
            // Creating an integer array
            int[] arr = {};
  
            // Using Ints.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: "
                               + Ints.max(arr));
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}
Producción:

Exception: java.lang.IllegalArgumentException

Referencia: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#max-int…-

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *