数据处理类常用方法
发布日期:2021-07-27 04:55:46 浏览次数:6 分类:技术文章

本文共 1150 字,大约阅读时间需要 3 分钟。

BigInteger类

平时使用的数值类型都有一定的长度限制,当我们要运算的数超过了长度限制之后就无法使用了, 这时我们就可以使用BigInteger,他可以装载其他类型表示的任意长度的数值。

//构造方法BigInteger bigInteger = new BigInteger("10809705710945701710989");//常用方法public BigInteger add(BigInteger augend) // 加public BigInteger subtract(BigInteger subtrahend) // 减public BigInteger multiply(BigInteger multiplicand) // 乘public BigInteger divide(BigInteger divisor) // 除public BigInteger pow(int n)//平方public BigInteger[] divideAndRemainder(BigInteger val) : 返回除积和余数

BigDecimal类

由于在运算的时候,float类型和double很容易丢失精度,比如1/2结果为0.49999999;不可变的、任意精度的有符号十进制数。

//构造方法BigDecimal bigDecimal = new BigDecimal("2.0");//常用方法public BigDecimal add(BigDecimal augend) //加public BigDecimal subtract(BigDecimal subtrahend) // 减public BigDecimal multiply(BigDecimal multiplicand) // 乘public BigDecimal divide(BigDecimal divisor) // 除public BigInteger pow(int n) //平方//newScale表示保留几位小数,RoundingMode直接调用静态方法public BigDecimal setScale(int newScale, RoundingMode roundingMode)//RoundingMode的模式HALF_DOWN //五舍六入HALF_UP //四舍五入CEILINGFLOOR

DecimalFormat类

按照一定的格式输出。

//三位小数,四舍五入DecimalFormat decimalFormat = new DecimalFormat("#.###");//数字按照一定格式输出decimalFormat.format("数字");

转载地址:https://blog.csdn.net/qq_45337431/article/details/100024356 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:日期类常用方法
下一篇:Runtime类、Math类和Random类的常用方法

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2024年09月13日 22时38分05秒