当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Guava Booleans.compare()用法及代码示例


Guava库中布尔类的compare()方法用于比较两个指定的布尔值。这些值作为参数传递,比较结果作为第一值和第二值之差得到。因此,它可以为正,零或负。

用法:

public static int compare(boolean a, boolean b)

参数:此方法接受两个参数:


  • a:这是要比较的第一个布尔对象。
  • b:这是要比较的第二个布尔对象。

返回值:此方法返回一个int值。它返回:

  • 如果“ a”等于“ b”,则为0,
  • 如果“ a”为真而“ b”为假,则为正值,
  • 如果“ a”为假而“ b”为真,则为负值

异常:该方法不会引发任何异常。

以下示例程序旨在说明Booleans.compare()方法:

范例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); 
    } 
}
输出:
Comparing true and true:0

范例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); 
    } 
}
输出:
Comparing true and false:1

范例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); 
    } 
}
输出:
Comparing false and true:-1


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java Guava | Booleans.compare() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。