java.lang.Short.reverseBytes()方法实例
java.lang.Short.reverseBytes() 方法返回通过反转指定short,2的补码表示的字节的顺序而获得的值。
声明
以下是java.lang.Short.reverseBytes()方法的声明
public static short reverseBytes(short i)
参数
-
i -- 这是short的值。
返回值
此方法返回通过反转指定short值的字节数得到的值。
异常
-
NA
例子
下面的例子显示java.lang.Short.reverseBytes()方法的使用。
package com.yiibai; 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