Java.lang.Short.reverseBytes() 方法

描述

java.lang.Short.reverseBytes() 方法返回通过反转指定短值的二进制补码表示中的字节顺序获得的值。


声明

以下是 java.lang.Short.reverseBytes() 方法的声明。

public static short reverseBytes(short i)

参数

i − 这是short值。


返回值

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


异常

NA


示例

下面的例子展示了 java.lang.Short.reverseBytes() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

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