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
Please Login to comment...