VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-floats-max-method-with-examples/

⇱ Java Guava | Floats.max() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Floats.max() method with Examples

Last Updated : 11 Jul, 2025
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:
Output:
Maximum value is : 15.5
Example 2 :
Comment