使用BigInteger实现除法取余
目录
- BigInteger 除法取余
- 1、BigInteger是什么?
- 2、BigInteger实现除法取余
- BigInteger简单使用及方法总结
- 下面我总结几种关于BigInteger的常用用法:
- 1、probablePrime和nextprobablePrime。(判断质数,并返回)
- 2、valueOf()(对数据初始化)
- 3、四则运算
- 4、remainder(取余)
- 5、divideAndRemainder(先除后取余,结果分别存在数组中)
BigInteger 除法取余
1、BigInteger是什么?
【使用BigInteger实现除法取余】Java中,整形的最大范围是64位的long型整数。但是如果我们使用的整数超过了64位呢?这时候就用到了BigInteger。BigInteger内部使用int[]数组来存储足够大的整数。
2、BigInteger实现除法取余
public class BigIntTest {public static void main(String[] args) {BigInteger bigInteger = new BigInteger("45615146541561"); BigInteger bigInteger2 = new BigInteger("6541315"); BigInteger[] resBigIntegers = bigInteger.divideAndRemainder(bigInteger2); System.out.println("两数相除,整除结果为:" + resBigIntegers[0]+",余数为:" + resBigIntegers[1]); }}
运行结果:
文章图片
BigInteger简单使用及方法总结 BigInteger 可以用来解决数据的溢出问题!
下面我总结几种关于BigInteger的常用用法:
1、probablePrime和nextprobablePrime。(判断质数,并返回)
BigInteger.probablePrime(int x);
返回有可能是素数(质数),具有指定长度的正数BigInteger,返回可能是合数的概率不超过2的负100次方,
BigInteger.nextprobablePrime(int x)
返回大于此BigInteger的有可能是素数(质数),具有指定长度的正数BigInteger,返回可能是合数的概率不超过2的负100次方
2、valueOf()(对数据初始化)
BigInteger valueOf(long val)
用法如下:
文章图片
3、四则运算 (add(加)。subtract(减)。multiply(乘)。divide(除))
调用方式如上图,可以重复调用
4、remainder(取余) 返回其值为取余后的BigInteger类型的值,例子如下
文章图片
调用的时候要保证数据是BigInteger类型的,可以用初始化(valueOf)或者new一个。
5、divideAndRemainder(先除后取余,结果分别存在数组中)
文章图片
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- python学习之|python学习之 实现QQ自动发送消息
- 孩子不是实现父母欲望的工具——林哈夫
- opencv|opencv C++模板匹配的简单实现
- Node.js中readline模块实现终端输入