Java Integer rotateLeft()方法

java.lang.Integer.rotateLeft() 方法返回通过旋转指定int i值左移位的指定数的二进制补码表示法得到的值。 (位移出左侧或高阶,侧重新输入在右边,或低位)。

1 语法

public static int rotateLeft(int i, int distance)

2 参数

i :这是int值。

distance:这是旋转的距离。

3 返回值

此方法返回通过旋转由位的指定数左移指定的int值的二进制补码表示法得到的值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum compareTo()方法
 */
import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     int n = 2;

     // returns the value obtained by rotating left
     for(int i = 0; i < 4; i++) {
        n = Integer.rotateLeft(n, 4);
        System.out.println(n);
     }
   }
}

输出结果为:

32
512
8192
131072

 

热门文章

优秀文章