Thursday, October 16, 2025
HomeLanguagesJavaJava Guava | Chars.max() method with Examples

Java Guava | Chars.max() method with Examples

Chars.max() is a method of Chars Class in Guava library which is used to find the greatest value present in an array. The value returned by this method is the largest char value in the specified array

Syntax:

public static char max(char... array)

Parameters: This method takes a mandatory parameter array which is a nonempty array of char values.

Return Value: This method returns a char value that is the maximum value in the specified array.

Exceptions: The method throws IllegalArgumentException if the array is empty.

Below programs illustrate the use of the above method:

Example 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));
    }
}


Output:

Maximum value is : U

Example 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);
        }
    }
}


Output:

java.lang.IllegalArgumentException

Reference: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#max(char…)

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11953 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS