當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Integer rotateRight()用法及代碼示例


位移用於編程中,並且每種編程語言至少具有一種變體。 Java具有單個邏輯右移運算符(>>)。移位是按位運算的一種。對二進製值的所有位進行位移位,該位將這些位向右移動一定數量的位置。如果值為0100; (即4)向右移動,則變為0010; (即2),它又再次向右移動,變為0001;或1。
java.lang.Integer.rotateRight()是一種方法,該方法通過將指定int值a的二進製補碼二進製表示形式向右旋轉指定位數來返回獲得的值。位向右移,即低位。

用法:

public static int rotateRight(int a, int shifts)

參數:該方法有兩個參數:


  • a:這是整數類型,是指要對其執行操作的值。
  • shifts:這也是整數類型,是指旋轉距離。

返回值:rotateRight()方法返回通過將指定int值的二進製補碼二進製數向右旋轉指定位數獲得的值。

以下程序說明了Java.lang.Integer.rotateRight()方法:
示例1:為正數。

// Java program to illustrate the 
// Java.lang.Integer.rotateRight() method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
        int a = 64; 
        int shifts = 0; 
        while (shifts < 3) 
        // It will return the value obtained by rotating left 
        { 
            a = Integer.rotateRight(a, 2); 
            System.out.println(a); 
            shifts++; 
        } 
    } 
}
輸出:
16
4
1

示例2:為負數。

// Java program to illustrate the 
// Java.lang.Integer.rotateRight() method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        int a = -165; 
        int shifts = 0; 
        while (shifts < 3) 
        // It will return the value obtained by rotating left 
        { 
            a = Integer.rotateRight(a, 2); 
            System.out.println(a); 
            shifts++; 
        } 
    } 
}
輸出:
-42
-1073741835
1879048189


相關用法


注:本文由純淨天空篩選整理自ankita_chowrasia大神的英文原創作品 Integer rotateRight() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。