当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。