Java Boolean.compare(boolean x, boolean y)
Syntax
Boolean.compare(boolean x, boolean y) has the following syntax.
public static int compare(boolean x, boolean y)
Example
In the following code shows how to use Boolean.compare(boolean x, boolean y) method.
/*from w ww . j av a 2 s. co m*/
public class Main {
public static void main(String[] args) {
System.out.println(Boolean.compare(true, false));
}
}
The code above generates the following result.