运算符 / 抽象方法

double 运算符 /(
  1. 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);