Java学习——常用API BigInteger

BigInteger类是Java中的一个类,它提供了在任意精度的整数上进行操作的功能。这意味着你可以使用BigInteger来表示非常大的整数值,超过了Java基本整型(如intlong)所能表示的范围。BigInteger位于java.math包中。

基本操作

BigInteger提供了一系列用于进行数学运算的方法,包括加法、减法、乘法、除法、取模、幂运算等。由于BigInteger是不可变的(immutable),每次操作都会返回一个新的BigInteger实例。

创建BigInteger实例

BigInteger的实例通常通过字符串构造器创建,尽管还有其他方式。

java 复制代码
BigInteger bigInt = new BigInteger("12345678901234567890");

常用方法

  • 加法add(BigInteger val)返回两个BigInteger的和。
  • 减法subtract(BigInteger val)返回两个BigInteger的差。
  • 乘法multiply(BigInteger val)返回两个BigInteger的乘积。
  • 除法divide(BigInteger val)返回两个BigInteger的商。
  • 取模mod(BigInteger val)返回两个BigInteger相除的余数。
  • 幂运算pow(int exponent)返回BigInteger的指定次幂。
  • 比较compareTo(BigInteger val)比较两个BigInteger的大小。

示例

java 复制代码
BigInteger a = new BigInteger("10000000000000000000");
BigInteger b = new BigInteger("20000000000000000000");

BigInteger sum = a.add(b);
System.out.println("Sum: " + sum.toString()); // Sum: 30000000000000000000

BigInteger difference = b.subtract(a);
System.out.println("Difference: " + difference.toString()); // Difference: 10000000000000000000

BigInteger product = a.multiply(b);
System.out.println("Product: " + product.toString()); // Product: 200000000000000000000000000000000000000

BigInteger quotient = b.divide(a);
System.out.println("Quotient: " + quotient.toString()); // Quotient: 2

BigInteger remainder = b.mod(a);
System.out.println("Remainder: " + remainder.toString()); // Remainder: 0

BigInteger power = a.pow(2);
System.out.println("Power: " + power.toString()); // Power: 100000000000000000000000000000000000000

注意事项

  • BigInteger操作的性能可能不如基本整数类型,特别是在处理大数时。这是由于BigInteger需要动态内存分配和更复杂的算法来处理大数运算。
  • BigInteger是不可变的,这意味着每次运算都会生成新的对象,而不是修改原有对象。这对于避免意外修改很有帮助,但在进行大量运算时需要注意可能的性能影响。

总的来说,BigInteger是处理超出基本整型范围的大整数的强大工具,特别适合用在需要高精度整数运算的场景,比如加密、大数处理等领域。

相关推荐
ajsbxi1 分钟前
苍穹外卖学习记录
java·笔记·后端·学习·nginx·spring·servlet
Rattenking2 分钟前
React 源码学习01 ---- React.Children.map 的实现与应用
javascript·学习·react.js
&岁月不待人&16 分钟前
Kotlin by lazy和lateinit的使用及区别
android·开发语言·kotlin
StayInLove20 分钟前
G1垃圾回收器日志详解
java·开发语言
对许24 分钟前
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“
java·log4j
dsywws24 分钟前
Linux学习笔记之时间日期和查找和解压缩指令
linux·笔记·学习
道法自然040225 分钟前
Ethernet 系列(8)-- 基础学习::ARP
网络·学习·智能路由器
无尽的大道28 分钟前
Java字符串深度解析:String的实现、常量池与性能优化
java·开发语言·性能优化
爱吃生蚝的于勒31 分钟前
深入学习指针(5)!!!!!!!!!!!!!!!
c语言·开发语言·数据结构·学习·计算机网络·算法
小鑫记得努力37 分钟前
Java类和对象(下篇)
java