Java - Byte compareTo() 方法



描述

Java Byte compareTo(Byte anotherByte) 方法按数值比较两个 Byte 对象。

声明

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

public int compareTo(Byte anotherByte)

指定于

接口 Comparable<Byte> 中的 compareTo

参数

anotherByte - 要比较的 Byte

返回值

如果此 Byte 等于参数 Byte,则此方法返回 0;如果此 Byte 在数值上小于参数 Byte,则返回小于 0 的值;如果此 Byte 在数值上大于参数 Byte,则返回大于 0 的值(带符号比较)。

异常

使用 new 运算符创建的两个 Byte 对象的比较示例

以下示例演示了使用 new 运算符创建的 Byte 对象的 Byte compareTo() 方法的使用。创建两个 Byte 变量并为其分配使用 new 运算符创建的 Byte 对象。然后使用 compareTo() 方法比较这两个变量,并根据 compareTo() 方法的响应打印结果。

package com.tutorialspoint;

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

使用 valueOf(String) 方法创建的两个 Byte 对象的比较示例

以下示例演示了使用 valueOf(String) 方法创建的 Byte 对象的 Byte compareTo() 方法的使用。创建两个 Byte 变量并为其分配使用 valueOf(String) 方法创建的 Byte 对象。然后使用 compareTo() 方法比较这两个变量,并根据 compareTo() 方法的响应打印结果。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

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

      // assign values to b1, b2
      b1 = Byte.valueOf("-100");
      b2 = Byte.valueOf("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

使用 valueOf(byte) 方法创建的两个 Byte 对象的比较示例

以下示例演示了使用 valueOf(byte) 方法创建的 Byte 对象的 Byte compareTo() 方法的使用。创建两个 Byte 变量并为其分配使用 valueOf(byte) 方法创建的 Byte 对象。然后使用 compareTo() 方法比较这两个变量,并根据 compareTo() 方法的响应打印结果。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

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

      // assign values to b1, b2
      b1 = Byte.valueOf((byte) -100);
      b2 = Byte.valueOf((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.htm
广告