Java中的 BigInteger shiftRight() 方法
先决条件: BigInteger 基础
Java.math.BigInteger.shiftRight(int n)方法返回一个 BigInteger,其值为 (this >> n)。移位距离 n 可能为负数,在这种情况下,此方法执行左移。 shiftRight() 方法将数字的二进制表示中的每个数字向右移动 n 次,并且移位方向的最后一位被 0 替换。此 shiftRight() 方法计算 floor(this / 2^n)。
句法:
public BigInteger shiftRight(int n)
参数:该方法采用一个整数类型的参数n ,表示移位距离,以位为单位。
返回值:该方法将位右移n次后返回BigInteger。
异常:如果移位距离是 Integer.MIN_VALUE,该方法可能会抛出ArithmeticException 。
例子:
Input: BigInteger = 2300, n = 3
Output: 287
Explanation:
Binary Representation of 2300 = 100011111100
Shift distance, n = 3.
After shifting 100011111100 right 3 times,
Binary Representation becomes 100011111
and Decimal equivalent of 100011111 is 287.
Input: BigInteger = 35000, n = 5
Output: 1093
下面的程序说明了 BigInteger 的 shiftRight(index) 方法:
// Program to demonstrate shiftRight()
// method of BigInteger
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Create BigInteger object
BigInteger biginteger = new BigInteger("2300");
// Create a int i for Shift Distance
int i = 3;
// Call shiftRight() method on bigInteger at index i
// store the return value as BigInteger
BigInteger changedvalue = biginteger.shiftRight(i);
String result = "After applying shiftRight by Shift Distance " + i +
" on " + biginteger + " New Value is " + changedvalue;
// Print result
System.out.println(result);
}
}
输出:
After applying shiftRight by Shift Distance 3 on 2300 New Value is 287
参考: https: Java/math/BigInteger.html#shiftRight(int)