Groovy -compareTo()


CompareTo 方法用于将一个数字与另一个数字进行比较。如果您想比较数字的值,这很有用。

句法

public int compareTo( NumberSubClass referenceName ) 

参数

ReferenceName - 这可以是字节、双精度、整数、浮点、长整型或短整型。

返回值

  • 如果整数等于参数,则返回 0。
  • 如果整数小于参数,则返回 -1。
  • 如果整数大于参数,则返回 1。

例子

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args) { 
      Integer x = 5;
		
      //Comparison against a Integer of lower value 
      System.out.println(x.compareTo(3));
		
      //Comparison against a Integer of equal value 
      System.out.println(x.compareTo(5)); 
		
      //Comparison against a Integer of higher value 
      System.out.println(x.compareTo(8)); 
   } 
} 

当我们运行上面的程序时,我们将得到以下结果 -

1 
0 
-1 
groovy_numbers.htm