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


Java Java.math.BigInteger.shiftRight()用法及代码示例



描述

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

声明

以下是声明java.math.BigInteger.shiftRight()方法。

public BigInteger shiftRight(int n)

参数

n− 移位距离,以位为单位。

返回值

此方法返回一个 BigInteger 对象,其值为 this >> n。

异常

ArithmeticException− 如果移动距离为Integer.MIN_VALUE。

示例

下面的例子展示了 math.BigInteger.shiftRight() 方法的用法。

package com.tutorialspoint;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

      // create 3 BigInteger objects
      BigInteger bi1, bi2, bi3;

      bi1 = new BigInteger("4");

      // perform right shift operation on bi1 using 2 and -2
      bi2 = bi1.shiftRight(2);
      bi3 = bi1.shiftRight(-2);

      String str1 = "Right shift on " +bi1+ ", 2 times gives " +bi2;
      String str2 = "Right shift on " +bi1+ ", -2 times gives " +bi3;

      // print bi2, bi3 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

Right shift on 4, 2 times gives 1
Right shift on 4, -2 times gives 16

相关用法


注:本文由纯净天空筛选整理自 Java.math.BigInteger.shiftRight() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。