Thursday, December 11, 2025
HomeLanguagesJavaJava Guava | Booleans.compare() method with Examples

Java Guava | Booleans.compare() method with Examples

The compare() method of Booleans Class in the Guava library is used to compare the two specified boolean 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(boolean a, boolean b)

Parameters: This method accepts two parameters:

  • a: which is the first boolean object to be compared.
  • b: which is the second boolean 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 true and ‘b’ is false,
  • a negative value if ‘a’ is false and ‘b’ is true

Exceptions: The method does not throw any exception.

Below programs illustrate the Booleans.compare() method:

Example 1:




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


Output:

Comparing true and true : 0

Example 2:




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


Output:

Comparing true and false : 1

Example 3:




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


Output:

Comparing false and true : -1
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7195 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS