Sunday, December 7, 2025
HomeLanguagesJavaJava Guava | Doubles.max() method with Examples

Java Guava | Doubles.max() method with Examples

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

Syntax:

public static double max(double... array)

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

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


Output:

Maximum value is : 15.5

Example 2 :




// Java code to show implementation of
// Guava's Doubles.max() method
  
import com.google.common.primitives.Doubles;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating a Double array
        double[] arr = {};
  
        try {
            // Using Doubles.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 : "
                               + Doubles.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/Doubles.html#max(double…)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32427 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6803 POSTS0 COMMENTS
Nicole Veronica
11944 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12014 POSTS0 COMMENTS
Shaida Kate Naidoo
6934 POSTS0 COMMENTS
Ted Musemwa
7188 POSTS0 COMMENTS
Thapelo Manthata
6882 POSTS0 COMMENTS
Umr Jansen
6867 POSTS0 COMMENTS