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:
Java
Java
Java
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.
- 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
// 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:
Example 2:
Comparing true and true : 0
// 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:
Example 3:
Comparing true and false : 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 = 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