Ints .min() de Guava devuelve el menor valor presente en la array.
Sintaxis:
public static int min(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 menor 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.min():
Ejemplo 1:
// Java code to show implementation of // Guava's Ints.min() 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 }; // Using Ints.min() method to get the // minimum value present in the array System.out.println("Minimum Value is: " + Ints.min(arr)); } }
Minimum Value is: -5
Ejemplo 2: Para demostrar IllegalArgumentException
// Java code to show implementation of // Guava's Ints.min() 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.min() method to get the // minimum value present in the array // This should raise "IllegalArgumentException" // as the array is empty System.out.println("Minimum Value is : " + Ints.min(arr)); } catch (Exception e) { System.out.println("Exception: " + e); } } }
Exception: java.lang.IllegalArgumentException
Referencia: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#min-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