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


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


Ints.compare()是Guava库中Ints类的方法,用于比较两个给定的int值。它使用两个整数作为要比较的参数。它基于指定整数的比较返回比较器值。

用法:

public static int compare(int a, int b)

参数:此方法需要两个参数:


  • a:这是要比较的第一个整数值。
  • b:这是要比较的第二个整数值。

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

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

以下示例程序旨在说明上述方法的使用:

示例1:

// Java code to show implementation of 
// Guava's Ints.compare() method 
import com.google.common.primitives.Ints; 
import java.util.List; 
  
class GFG { 
    // Driver's code 
    public static void main(String[] args) 
    { 
        // Using Ints.compare() method to 
        // compare the two specified int 
        // values in the standard way 
        // This should return positive number 
        // as a is greater than b 
        System.out.println(Ints.compare(5, 3)); 
    } 
}
输出:
1

示例2:

// Java code to show implementation of 
// Guava's Ints.compare() method 
import com.google.common.primitives.Ints; 
import java.util.List; 
  
class GFG { 
    // Driver's code 
    public static void main(String[] args) 
    { 
        // Using Ints.compare() method to 
        // compare the two specified int 
        // values in the standard way 
        // This should return 0 as a == b 
        System.out.println(Ints.compare(2, 2)); 
    } 
}
输出:
0


相关用法


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