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.tutorialspoint;

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