Thursday, June 27, 2024
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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments