Java - 简短的 reverseBytes() 方法



Java Short reverseBytes() 方法用于检索通过反转给定 short 值的二进制 2 的补码形式中的字节顺序获得的原始 short 值。

reverseBytes() 方法是静态的,这意味着调用此方法时应添加类名作为后缀。如果我们非静态地调用此方法,我们将遇到编译错误。非静态方法通常通过简单地声明 method_name(argument) 来调用。

语法

以下是Java Short parseShort() 方法的语法:

public static short reverseBytes(short i)

参数

  • i − 这是 short 值。

返回值

此方法返回通过反转指定 short 值中的字节获得的值。

从正 Short 值获取反向字节示例

我们可以使用 reverseBytes() 方法传递正值。结果将是给定 short 值的反向字节值。

以下示例显示了 Java Short reverseBytes() 方法的使用。在这里,我们将一个正值赋给 short 变量“shortNum”。然后显示反转字节顺序后的 short 值。

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      
      // assign value to short
      short shortNum = 50;
      
      /* returns the value after reversing the order of the bytes
      in the binary representation of the specified short value. */
      short shortValue = Short.reverseBytes(shortNum);   
      
      // displaying the reversed value
      System.out.println("The reversed value is = " + shortValue);
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

The reversed value is = 12800

从负 Short 值获取反向字节示例

我们也可以使用 reverseBytes() 方法传递负值。结果将是给定 short 值的反向字节值。

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      
      // assign value to short
      short shortNum = -87;
      
      /*
      * returns the value after reversing the order of the bytes
      * in the binary representation of the specified short value.
      */
      short shortValue = Short.reverseBytes(shortNum);
      
      // displaying the reversed value
      System.out.println("The reversed value is = " + shortValue);
   }
}

输出

以下是上述代码的输出:

The reversed value is = -22017

从最大 Short 值获取反向字节示例

我们也可以使用此方法传递 MAX_VALUE 作为参数,它返回-129。

在下面的示例中,创建了一个 short 变量“s”。MAX_VALUE 被赋给此变量的值。然后返回给定 short 值的 reverseBytes:

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      
      // create short value
      short s = Short.MAX_VALUE;
      System.out.println("The short MAX_VALUE is: " + s);
      
      // create reverseBytes of the given short value
      short x = Short.reverseBytes(s);
      
      // print the reverseBytes of the given short value
      System.out.println("reverseBytes of s is: " + x);
   }
}

输出

上述代码的输出如下:

The short MAX_VALUE is: 32767
reverseBytes of s is: -129

从最小 Short 值获取反向字节示例

如果我们使用此方法传递 MIN_VALUE 作为参数,它将返回 128。

在下面给出的示例中,创建了一个 short 变量“s”。MIN_VALUE 被赋给此变量的值。然后返回给定 short 值的 reverseBytes:

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      
      // create short value
      short s = Short.MIN_VALUE;
      System.out.println("The short MIN_VALUE is: " + s);
      
      // create reverseBytes of the given short value
      short x = Short.reverseBytes(s);
      
      // print the reverseBytes of the given short value
      System.out.println("reverseBytes of s is: " + x);
   }
}  

输出

执行上述代码时,我们得到以下输出:

The short MIN_VALUE is: -32768
reverseBytes of s is: 128
java_lang_short.htm
广告