HomeLanguagesJavaJava Guava | Doubles.compare() method with Examples

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:

  • a: which is the first double object to be compared.
  • b: which is the second double object to be compared.

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

  • 0 if ‘a’ is equal to ‘b’,
  • a positive value if ‘a’ is greater than ‘b’,
  • a negative value if ‘a’ is lesser than ‘b’

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
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6922 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12144 POSTS0 COMMENTS
Shaida Kate Naidoo
7059 POSTS0 COMMENTS
Ted Musemwa
7300 POSTS0 COMMENTS
Thapelo Manthata
7016 POSTS0 COMMENTS
Umr Jansen
7005 POSTS0 COMMENTS