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