java.lang.Integer.rotateRight() 方法一向右位的指定的數迴旋轉指定int值的二進位制二補數表示形式而得到的值。 (移出的位的右邊,或低位,再輸入側上的左側,或高次。)
以下是java.lang.Integer.rotateRight()方法的宣告
public static int rotateRight(int i, int distance)
i -- 這是int值。
distance -- 這是旋轉的距離。
此方法返回由右由位的指定數的旋轉指定的int值的二進位制二補數表示法得到的值。
NA
下面的例子顯示java.lang.Integer.rotateRight()方法的使用。
package com.yiibai; 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