java.lang.Integer.compareTo() 方法比較兩個整數物件的數值。
以下是java.lang.Integer.compareTo()方法的宣告
public int compareTo(Integer anotherInteger)
anotherInteger -- 這是進行比較的整數。
此方法返回0值,如果該整數等於引數的整數,返回小於0值,如果該整數數值小於引數整數;返回一個大於0的值,如果該整數數值小於引數整數。
NA
下面的例子顯示java.lang.Integer.compareTo()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { // compares two Integer objects numerically Integer obj1 = new Integer("25"); Integer obj2 = new Integer("10"); int retval = obj1.compareTo(obj2); if(retval > 0) { System.out.println("obj1 is greater than obj2"); } else if(retval < 0) { System.out.println("obj1 is less than obj2"); } else { System.out.println("obj1 is equal to obj2"); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
obj1 is greater than obj2