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


Java Long rotateLeft()用法及代碼示例


Long類rotateLeft()方法

  • rotateLeft() 方法可在java.lang包。
  • rotateLeft() 方法用於返回通過將給定參數(值)的二進製 2 的補碼表示旋轉給定位數而生成的值。
  • rotateLeft() 方法是一個靜態方法,它也可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們也不會收到錯誤。
  • rotateLeft() 方法在位旋轉或移位時不拋出異常。

用法:

    public static long rotateLeft(long value, int rotation);

參數:

  • long value– 表示要解析的long值。
  • int rotation– 表示旋轉距離。

返回值:

這個方法的返回類型是long,它返回一個 long 值,它是通過將給定 long 值的 2 的補碼二進製旋轉給定的位數而生成的。

例:

// Java program to demonstrate the example 
// of rotateLeft(long value, int rotation) method of Long class

public class RotateLeftOfLongClass {
    public static void main(String[] args) {
        long value = 3;
        int rotation = 1;

        // Iterates till the value of rotation reaches
        while (rotation < 4) {
            // It return the value generated by rotating the 
            // 2's complement of the given argument (value) left
            // by given number of bits
            value = Long.rotateLeft(value, 3);
            System.out.println("value:" + value);
            ++rotation;
        }
    }
}

輸出

value:24
value:192
value:1536


相關用法


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