java.lang.Integer.reverse()%uA0方法返回通过比特的反转顺序,指定int值的二进制补码表示法得到的值。
声明
以下是java.lang.Integer.reverse()方法的声明
public static int reverse(int i)
参数
-
i%uA0-- 这是int值。
返回值
此方法返回通过位的反转顺序,指定的int值而得到的值。
异常
-
NA
例子
下面的例子显示java.lang.Integer.reverse()方法的使用。
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 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