operator / 抽象方法
- BigInt other
双倍除法运算符。
与int上类似的运算符匹配,此操作首先对此大整数和other
进行toDouble转换,然后对这些值执行double.operator/运算,并返回结果。
注意:最初的toDouble转换可能会丢失精度。
示例
print(BigInt.from(1) / BigInt.from(2)); // 0.5
print(BigInt.from(1.99999) / BigInt.from(2)); // 0.5
实现
double operator /(BigInt other);