Doubles.min() is a method of Doubles Class in Guava library which is used to find the least value present in an array. The value returned by this method is the smallest double value in the specified array.
Syntax:
public static double min(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 minimum 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 :
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
double [] arr = { 2.2 , 4.3 , 6.4 , 10.5 ,
0.6 , - 5.7 , 15.8 };
System.out.println( "Minimum Value is : "
+ Doubles.min(arr));
}
}
|
Output:
Minimum Value is : -5.7
Example 2 :
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
double [] arr = {};
try {
System.out.println( "Minimum Value is : "
+ Doubles.min(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#min(double…)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!