操作符 >> 抽象方法

BigInt operator >>(
  1. int shiftAmount
)

将此整数的位向右移动 shiftAmount

向右移动会使数字变小,并丢弃最低有效位,相当于通过 pow(2, shiftIndex) 进行整数除法。

如果 shiftAmount 为负,则为错误。

实现

BigInt operator >>(int shiftAmount);