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


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


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

用法:

public static int compare(char a, char b)

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


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

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

  • 如果“ a”等于“ b”,则为0,
  • 正值“ a”大于“ b”,
  • 负值“ a”小于“ b”

异常:该方法没有任何异常。

范例1:

// Java code to show implementation of 
// Guava's Chars.compare() method 
import com.google.common.primitives.Chars; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        char a = 'c'; 
        char b = 'c'; 
  
        // compare method in Char class 
        int output = Chars.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + ":"
                           + output); 
    } 
}
输出:
Comparing c and c:0

范例2:

// Java code to show implementation of 
// Guava's Chars.compare() method 
import com.google.common.primitives.Chars; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        char a = 'd'; 
        char b = 'D'; 
  
        // compare method in Char class 
        int output = Chars.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + ":"
                           + output); 
    } 
}
输出:
Comparing d and D:32

范例3:

// Java code to show implementation of 
// Guava's Chars.compare() method 
import com.google.common.primitives.Chars; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        char a = 'E'; 
        char b = 'c'; 
  
        // compare method in Char class 
        int output = Chars.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + ":"
                           + output); 
    } 
}
输出:
Comparing E and c:-30


相关用法


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