Sunday, November 16, 2025
HomeLanguagesJavaJava Guava | Floats.compare() method with Examples

Java Guava | Floats.compare() method with Examples

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:

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.

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

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

Exceptions: The method does not throw any exception.

Example 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 = 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:

Comparing 4.0 and 4.0 : 0

Example 2:




// 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:

Comparing 4.2 and 3.1 : 1

Example 3:




// 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
RELATED ARTICLES

Most Popular

Dominic
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6769 POSTS0 COMMENTS
Nicole Veronica
11919 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11990 POSTS0 COMMENTS
Shaida Kate Naidoo
6897 POSTS0 COMMENTS
Ted Musemwa
7150 POSTS0 COMMENTS
Thapelo Manthata
6851 POSTS0 COMMENTS
Umr Jansen
6843 POSTS0 COMMENTS