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