Java Short reverseBytes()方法

java.lang.Short.reverseBytes() 方法返回通过反转指定short,2的补码表示的字节的顺序而获得的值。

1 语法

public static short reverseBytes(short i)

2 参数

i :这是short的值。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Short reverseBytes()方法
 */
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

 

热门文章

优秀文章