java.lang.Integer.reverseBytes()方法實例
java.lang.Integer.reverseBytes() 方法返回通過反轉指定int值的二進製補碼表示的字節的順序而獲得的值。
聲明
以下是java.lang.Integer.reverseBytes()方法的聲明。
public static int reverseBytes(int i)
參數
-
i -- 這是int值。
返回值
此方法返回通過反轉指定int值的字節數得到的值。
異常
-
NA
例子
下麵的例子顯示java.lang.Integer.reverseBytes()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { int i = 170; System.out.println("Number = " + i); /* returns the string representation of the unsigned integer value represented by the argument in binary (base 2) */ System.out.println("Binary = " + Integer.toBinaryString(i)); // returns the number of one-bits System.out.println("Number of one bits = " + Integer.bitCount(i)); /* returns the value obtained by reversing the bytes in the specified int value */ System.out.println("After reversing = " + Integer.reverseBytes(i)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Number = 170 Binary = 10101010 Number of one bits = 4 After reversing = -1442840576