Open In App

Java Guava | Doubles.compare() method with Examples

Doubles.compare() method of Guava’s Doubles Class is used to compare the two specified double values. These values are passed as the parameter and the result of comparison is found as the difference of 1st value and the 2nd value. Hence it can be positive, zero or negative.

Syntax:



public static int compare(double a, double b)

Parameters: This method accepts two parameters:

Return Value: This method returns an int value. It returns:



Exceptions: The method does not throw any exception.

Below programs illustrate the Double.compare() method:

Example 1:




// Java code to show implementation of
// Guava's Doubles.compare() method
  
import com.google.common.primitives.Doubles;
  
class GFG {
    public static void main(String[] args)
    {
        double a = 4.0;
        double b = 4.0;
  
        // compare method in Double class
        int output = Doubles.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}

Output:
Comparing 4.0 and 4.0 : 0

Example 2:




// Java code to show implementation of
// Guava's Doubles.compare() method
  
import com.google.common.primitives.Doubles;
  
class GFG {
    public static void main(String[] args)
    {
        double a = 5.6;
        double b = 4.2;
  
        // compare method in Double class
        int output = Doubles.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}

Output:
Comparing 5.6 and 4.2 : 1

Example 3:




// Java code to show implementation of
// Guava's Doubles.compare() method
  
import com.google.common.primitives.Doubles;
  
class GFG {
    public static void main(String[] args)
    {
        double a = 3.6;
        double b = 7.4;
  
        // compare method in Double class
        int output = Doubles.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}

Output:
Comparing 3.6 and 7.4 : -1

Article Tags :