Java 程序以在 BigInteger 中移动位


若要在 BigInteger 中移动位,可使用 shiftLeft() 或 shiftRight() 方法。

shiftLeft() 方法

java.math.BigInteger.shiftLeft(int n) 返回一个值为 (this << n) 的 BigInteger。位移距离 n 可能为负,在这种情况下,此方法执行右移。它计算 floor(this * 2n)。

示例

 实时演示

import java.math.*;
public class Demo {
   public static void main(String[] args) {
      BigInteger one;
      one = new BigInteger("15");
      one = one.shiftLeft(2);
      System.out.println("Result: " +one);
   }
}

输出

Result: 60

shiftRight() 方法

java.math.BigInteger.shiftRight(int n) 返回一个值为 (this >> n) 的 BigInteger。执行有符号扩展。位移距离 n 可能为负,在这种情况下,此方法执行左移。它计算 floor(this / 2n)。

示例

 实时演示

import java.math.*;
public class Demo {
   public static void main(String[] args) {
      BigInteger one;
      one = new BigInteger("25");
      one = one.shiftRight(3);
      System.out.println("Result: " +one);
   }
}

输出

Result: 3

更新于:25-6 月-2020

87 次浏览

启动你的职业生涯

通过完成课程获得认证

开始
广告