當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。