Java - Integer reverse() 方法



描述

Java Integer reverse() 方法返回通过反转指定 int 值的二进制补码表示中的位顺序获得的值。

声明

以下是 java.lang.Integer.reverse() 方法的声明

public static int reverse(int i)

参数

i - 这是 int 值。

返回值

此方法返回通过反转指定 int 值中位顺序获得的值。

异常

从正整数获取反转位 int 值示例

以下示例演示了 Integer reverse() 方法的使用,以通过反转指定 int 值的二进制补码表示中的位顺序来获取一个 int。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 位计数,然后使用 reverse() 方法打印通过反转指定 int 值中位顺序获得的值。

package com.tutorialspoint;

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 order of the bits in 
         the specified int value */ 
      System.out.println("After reversing = " + Integer.reverse(i));
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = 170
Binary = 10101010
Number of one bits = 4
After reversing = 1426063360

从负整数获取反转位 int 值示例

以下示例演示了 Integer reverse() 方法的使用,以通过反转指定负整数的二进制补码表示中的位顺序来获取一个 int。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 位计数,然后使用 reverse() 方法打印通过反转指定 int 值中位顺序获得的值。

package com.tutorialspoint;

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 order of the bits in 
         the specified int value */ 
      System.out.println("After reversing = " + Integer.reverse(i));
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = -170
Binary = 11111111111111111111111101010110
Number of one bits = 28
After reversing = 1795162111

从正零值获取反转位 int 值示例

以下示例演示了 Integer reverse() 方法的使用,以通过反转指定零值的二进制补码表示中的位顺序来获取一个 int。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 位计数,然后使用 reverse() 方法打印通过反转指定 int 值中位顺序获得的值。

package com.tutorialspoint;

public class IntegerDemo {
   public static void main(String[] args) {
      int i = 0;
      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 order of the bits in 
         the specified int value */ 
      System.out.println("After reversing = " + Integer.reverse(i));
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = 0
Binary = 0
Number of one bits = 0
After reversing = 0
java_lang_integer.htm
广告