将此整数的位向右移动 shiftAmount 位。
shiftAmount
向右移动会使数字变小并丢弃最低有效位,相当于执行了整数除法 pow(2, shiftIndex)。
pow(2, shiftIndex)
如果 shiftAmount 为负数则会出现错误。
BigInt operator >>(int shiftAmount);