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