位置:首頁 > Java技術 > java.lang > java.lang.Byte.compareTo()方法實例

java.lang.Byte.compareTo()方法實例

java.lang.Byte.compareTo(Byte anotherByte) 比較兩個字節的對象上的數字。

聲明

以下是java.lang.Byte.compareTo()方法的聲明

public int compareTo(Byte anotherByte)

Specified by

compareTo 在接口 Comparable<Byte>

參數

  • anotherByte - 該字節進行比較

返回值

此方法返回值0,如果這個字節等於參數字節;值小於0,如果這個字節數值大於參數字節以內;和一個大於0的值,如果這個字節數值大於參數字節(符號比較)。

異常

  • NA

例子

下麵的例子顯示lang.Byte.compareTo()方法的使用。

package com.yiibai;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

       // create 2 Byte objects b1, b2
      Byte b1, b2;

      // assign values to b1, b2
      b1 = new Byte("-100");
      b2 = new Byte("10");

      // create an int res
      int res;

      // compare b1 with b2 and assign result to res
      res = b1.compareTo(b2);

      String str1 = "Both values are equal ";
      String str2 = "First value is greater";
      String str3 = "Second value is greater";

      if( res == 0 ){
      	 System.out.println( str1 );
      }
      else if( res > 0 ){
      	 System.out.println( str2 );
      }
      else if( res < 0 ){
      	 System.out.println( str3 );
      }
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Second value is greater