rotateRight() 方法對於對二進位資料執行位元操作非常有用。具體來說,它將數字的二進制數字向右循環指定的位數。這對於對整數執行位元運算或在二進制和十進制數之間進行轉換非常有用。在本實驗中,我們將探索如何使用此方法旋轉多個不同的整數並檢查結果。
在第一步中,我們需要匯入所需的套件才能使用rotateRight()方法。為此,我們將使用 java.lang 和 java.util 套件。
import java.lang.*; import java.util.*;
此套件包含我們取得使用者輸入所需的 Scanner 類別。
在這一步驟中,我們將定義 RotateRight 類別和 main() 方法。
public class RotateRight { public static void main(String[] args) { // Code to be added here } }
在這一步驟中,我們將為我們的程式定義所需的變數。
public class RotateRight { public static void main(String[] args) { int n1 = 8; int n2 = -8; int val = 3; // Code to be added here } }
我們定義了三個變數 n1、n2 和 val。這些變數將用於在後續步驟中執行位元旋轉操作。
在此步驟中,我們將使用 Integer.toBinaryString() 方法輸出數字 n1 和 n2 的二進位等效值。
public class RotateRight { public static void main(String[] args) { int n1 = 8; int n2 = -8; int val = 3; System.out.println("Binary equivalent of n1: " + Integer.toBinaryString(n1)); System.out.println("Binary equivalent of n2: " + Integer.toBinaryString(n2)); } }
這裡,我們使用 Integer.toBinaryString() 方法將整數轉換為二進位格式,然後使用 System.out.println() 方法列印它們。
在這一步驟中,我們將使用rotateRight()方法來執行位元旋轉操作。
public class RotateRight { public static void main(String[] args) { int n1 = 8; int n2 = -8; int val = 3; System.out.println("Binary equivalent of n1: " + Integer.toBinaryString(n1)); for (int i = 0; i < val; i++) { n1 = Integer.rotateRight(n1, val); System.out.println(n1); } System.out.println("Binary equivalent of n2: " + Integer.toBinaryString(n2)); for (int i = 0; i < val; i++) { n2 = Integer.rotateRight(n2, val); System.out.println(n2); } } }
上面的程式碼有兩個for迴圈來對兩個數字執行位元旋轉操作。我們使用了rotateRight()方法以及要旋轉的數字和要旋轉的位置的數量。
在這一步驟中,我們將透過命令列取得使用者輸入,並根據使用者輸入執行位元旋轉操作。
public class RotateRight { public static void main(String[] args) { try { System.out.println("Enter the value and distance"); Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int val = sc.nextInt(); System.out.println("Binary equivalent is : " + Integer.toBinaryString(n)); for (int i = 0; i < val; i++) { n = Integer.rotateRight(n, val); System.out.println(n); } } catch (Exception e) { System.out.println("Invalid Input"); } } }
在這裡,我們透過掃描器物件 sc nextInt() 方法來取得使用者輸入。然後,將根據使用者輸入執行位元旋轉操作。
要編譯並執行程序,我們可以在終端機中使用以下命令:
javac RotateRight.java && java RotateRight
在本實驗中,我們學習如何使用 Integer.rotateRight() 方法在 Java 中執行位元旋轉操作。我們首先導入所需的包,定義主類別和使用者定義的變數。我們輸出給定輸入數字的二進位等價物,然後根據使用者輸入執行位元旋轉操作。最後,我們編譯並運行程式並檢查輸出。
?立即練習:Java 整數rotateRight方法
以上是掌握Java的rotateRight()方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!