Saturday, December 13, 2025
HomeLanguagesJavaJava Guava | Floats.max() method with Examples

Java Guava | Floats.max() method with Examples

Floats.max() is a method of Floats 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 float value in the specified array.

Syntax :

public static float max(float... array)

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

Return Value: This method returns a float 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 Floats.max() method
  
import com.google.common.primitives.Floats;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating a float array
        float[] arr = { 2.2f, 4.3f, 6.4f, 10.2f,
                        0f, -5.2f, 15.5f, 7.4f };
  
        // Using Floats.max() method to get the
        // maximum value present in the array
        System.out.println("Maximum value is : "
                           + Floats.max(arr));
    }
}


Output:

Maximum value is : 15.5

Example 2 :




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


Output:

java.lang.IllegalArgumentException

Reference: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Floats.html#max(float…)

RELATED ARTICLES

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7200 POSTS0 COMMENTS
Thapelo Manthata
6897 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS