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


Java Long rotateRight()用法及代码示例


Long类rotateRight()方法

  • rotateRight() 方法可在java.lang包。
  • rotateRight() 方法用于返回通过将给定参数(值)的二进制 2 的补码表示向右旋转给定位数而生成的值。
  • rotateRight() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • rotateRight() 方法在位旋转或移位时不抛出异常。

用法:

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

参数:

  • long value- 表示要解析的long值。
  • int rotation- 表示旋转距离。

返回值:

这个方法的返回类型是long,它返回一个 long 值,它是通过将给定 long 值的 2 的补码二进制向右旋转给定位数而生成的。

例:

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

public class RotateRightOfLongClass {
    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) right 
            // by the given number of bits
            value = Long.rotateRight(value, 3);
            System.out.println("value:" + value);
            ++rotation;
        }
    }
}

输出

value:6917529027641081856
value:864691128455135232
value:108086391056891904


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Long class rotateRight() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。