java.lang.Integer.compareTo()方法實例
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