Chars.max() es un método de Chars 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 de carácter más grande en la array especificada
Sintaxis:
public static char max(char... array)
Parámetros: este método toma una array de parámetros obligatoria que es una array no vacía de valores de caracteres .
Valor devuelto: este método devuelve un valor de char 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 Chars.max() method import com.google.common.primitives.Chars; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a character array char[] arr = { 'A', 'E', 'I', 'O', 'U' }; // Using Chars.max() method to get the // maximum value present in the array System.out.println("Maximum value is : " + Chars.max(arr)); } }
Maximum value is : U
Ejemplo 2:
// Java code to show implementation of // Guava's Chars.max() method import com.google.common.primitives.Chars; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a character array char[] arr = {}; try { // Using Chars.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 : " + Chars.max(arr)); } catch (Exception e) { System.out.println(e); } } }
java.lang.IllegalArgumentException
Referencia: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#max(char…)
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