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:
Java
Java
Java
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.
- 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’
// 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:
Example 2:
Comparing 4.0 and 4.0 : 0
// 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:
Example 3:
Comparing 5.6 and 4.2 : 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 = 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