BigInteger的使用

Posted 化身孤岛的鱼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BigInteger的使用相关的知识,希望对你有一定的参考价值。

【构造方法】

BigInteger(String val) :将 BigInteger 的十进制字符串表示形式转换为 BigInteger。

【常用方法】

1)add(BigInteger val):返回其值为 (this + val) 的 BigInteger。

2)subtract(BigInteger val):返回其值为 (this - val) 的 BigInteger。

3)multiply(BigInteger val):返回其值为 (this * val) 的 BigInteger。

4)divide(BigInteger val):返回其值为 (this / val) 的 BigInteger。

5)divideAndRemainder(BigInteger val) :返回包含 (this / val) 后跟 (this % val) 的两个 BigInteger 的数组。bi[0]为商,bi[1]为余数。

以上是关于BigInteger的使用的主要内容,如果未能解决你的问题,请参考以下文章

BigInteger和BigDecimal类详解

使用Kotlin中的foreach循环遍历BigInteger值

BigInteger 使用了多少空间?

BigInteger和BigDecimal18

BigInteger与BigDecimal

Java中 BigInteger 的常用方法与注意事项