當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Byte.compareTo()用法及代碼示例



描述

這個java.lang.Byte.compareTo(Byte anotherByte)以數字方式比較兩個 Byte 對象。

聲明

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

public int compareTo(Byte anotherByte)

指定者

接口中的比較Comparable<Byte>

參數

anotherByte─要比較的字節

返回值

如果此 Byte 等於參數 Byte,則此方法返回值 0;如果此 Byte 在數值上小於參數 Byte,則為小於 0 的值;如果此 Byte 在數值上大於參數 Byte(有符號比較),則該值大於 0。

異常

NA

示例

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

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Byte.compareTo() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。