Java Integer rotateRight()方法
java.lang.Integer.rotateRight() 方法一向右位的指定的数回旋转指定int值的二进制补码表示形式而得到的值。 (移出的位的右边,或低位,再输入侧上的左侧,或高次。)
1 语法
public static int rotateRight(int i, int distance)
2 参数
i :这是int值。
distance: 这是旋转的距离。
3 返回值
此方法返回由右由位的指定数的旋转指定的int值的二进制补码表示法得到的值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Integer rotateRight()方法
*/
import java.lang.*;
public class IntegerDemo {
public static void main(String[] args) {
int n = 2;
// returns the value obtained by rotating right
for(int i = 0; i < 4; i++) {
n = Integer.rotateRight(n, 4);
System.out.println(n);
}
}
}
输出结果为:
536870912
33554432
2097152
131072
热门文章
优秀文章