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