Floats.compare() method of Floats Class is used to compare the two specified float 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(float a, float b)Parameters: This method accepts two parameters:
- a: which is the first float object to be compared.
- b: which is the second float object to be compared.
- 0 if ‘a’ is equal to ‘b’,
- a positive value ‘a’ is greater than ‘b’,
- a negative value ‘a’ is lesser than ‘b’
// Java code to show implementation of
// Guava's Floats.compare() method
import com.google.common.primitives.Floats;
class GFG {
public static void main(String[] args)
{
float a = 4f;
float b = 4f;
// compare method in Float class
int output = Floats.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 Floats.compare() method
import com.google.common.primitives.Floats;
class GFG {
public static void main(String[] args)
{
float a = 4.2f;
float b = 3.1f;
// compare method in Float class
int output = Floats.compare(a, b);
// printing the output
System.out.println("Comparing " + a
+ " and " + b + " : "
+ output);
}
}
Output:
Example 3:
Comparing 4.2 and 3.1 : 1
// Java code to show implementation of
// Guava's Floats.compare() method
import com.google.common.primitives.Floats;
class GFG {
public static void main(String[] args)
{
float a = 2.5f;
float b = 4f;
// compare method in Float class
int output = Floats.compare(a, b);
// printing the output
System.out.println("Comparing " + a
+ " and " + b + " : "
+ output);
}
}
Output:
Comparing 2.5 and 4.0 : -1