java中BigDecimal和bigInteger如何转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中BigDecimal和bigInteger如何转换相关的知识,希望对你有一定的参考价值。

能否将BigDecimal的实例转换为bigInteger的实例,比如BigDecimal(K+“”)【K远大于long类型的最大值】,这样的一个BigDecimal类型能否转换为BigIntegerl类型的实例? 就是怎么样把其中的小数点后面的值去掉。求解~

参考技术A 先转化为String,然后截取小数点前面的数,再转化成BigInteger
BigDecimal a = new BigDecimal("23455.789");
String str = a.toString();
String inte = str.split("\\.")[0];
BigInteger b = new BigInteger(inte);本回答被提问者和网友采纳
参考技术B bigInteger aa=new BigDecimal("235353.2300").toBigInteger()即可

Java中BigDecimal和BigInteger用法知识点补充

今天开发过程中遇到了数据库字段的属性为BigDecimal,对这个属性有点陌生,查看了下JavaAPI和阿里Java编码规范中和Mysql建表约束中明确规范,写几个BigDecimal类型的方法熟悉下用法,同时还遇到BigInteger的用法,一起特此记录下!



BigDecimal

java.lang.Object
java.lang.Number
java.math.BigDecimal

BigDecimal可以表示一个任意大小且精度完全准确的浮点数

public static void main(String[] args) 
        BigDecimal bigDecimal = new BigDecimal("-15896.789");
        // 返回一个 BigDecimal ,其值为此 BigDecimal的绝对值
        System.out.println("bigDecimal = " + bigDecimal);
        // 转换为short:shortValue()
        System.out.println("bigDecimal.shortValue() = " + bigDecimal.shortValue());
        // 转换为int:intValue()
        System.out.println("bigDecimal.intValue() = " + bigDecimal.intValue());
        // 转换为byte:byteValue()
        System.out.println("bigDecimal.byteValue() = " + bigDecimal.byteValue());
        // 转换为float:floatValue()
        System.out.println("bigDecimal.floatValue() = " + bigDecimal.floatValue());
        // 转换为double:doubleValue()
        System.out.println("bigDecimal.doubleValue() = " + bigDecimal.doubleValue());
        // 转换为long:longValue()
        System.out.println("bigDecimal.longValue() = " + bigDecimal.longValue());
        System.out.println("bigDecimal.max(bigDecimal) = " + bigDecimal.max(bigDecimal));
        // 返回此BigDecimal对象的精度
        System.out.println("bigDecimal.scale() = " + bigDecimal.scale());
        // 转为字符串
        System.out.println("bigDecimal.toString() = " + bigDecimal.toString());
        // 返回一个 BigDecimal ,相当于这个小数点,向左移动了 n个地方
        System.out.println("bigDecimal.movePointLeft(2) = " + bigDecimal.movePointLeft(2));
        // 返回一个 BigDecimal ,相当于这个小数点,向右移动了 n个地方
        System.out.println("bigDecimal.movePointRight(2) = " + bigDecimal.movePointRight(2));
        // 返回 BigDecimal ,值为 bigDecimal的平方
        System.out.println("bigDecimal.multiply(bigDecimal) = " + bigDecimal.multiply(bigDecimal));
        // 返回 BigDecimal ,值为 bigDecimal+bigDecimal
        System.out.println("bigDecimal.add(bigDecimal) = " + bigDecimal.add(bigDecimal));
    

控制台输出

bigDecimal = -15896.789
bigDecimal.shortValue() = -15896
bigDecimal.intValue() = -15896
bigDecimal.byteValue() = -24
bigDecimal.floatValue() = -15896.789
bigDecimal.doubleValue() = -15896.789
bigDecimal.longValue() = -15896
bigDecimal.max(bigDecimal) = -15896.789
bigDecimal.scale() = 3
bigDecimal.toString() = -15896.789
bigDecimal.movePointLeft(2) = -158.96789
bigDecimal.movePointRight(2) = -1589678.9
bigDecimal.multiply(bigDecimal) = 252707900.510521
bigDecimal.add(bigDecimal) = -31793.578

BigInteger

java.lang.Object
java.lang.Number
java.math.BigInteger

BigInteger提供了所有Java的原始整数运算符和java.lang.Math中所有相关方法的类比。 此外,BigInteger还提供了模数运算,GCD计算,原始测试,初级生成,位操作以及其他一些其他操作的操作。

java.math.BigInteger就是用来表示任意大小的整数。BigInteger内部用一个int[]数组来模拟一个非常大的整数

BigInteger的构造方法

如果BigInteger表示的范围超过了基本类型的范围,在转换时如果超出范围,将直接抛出ArithmeticException异常

public static void main(String[] args) 
        BigInteger bigInteger = new BigInteger("1234566666");
        BigInteger bigInteger1 = new BigInteger("123467896666");
        BigInteger bigInteger2 = new BigInteger("789412354666");
        BigInteger bigInteger3 = new BigInteger("12966600000");
        System.out.println("bigInteger.pow(5) = " + bigInteger.pow(5));
        System.out.println("bigInteger1.add(bigInteger2) = " + bigInteger1.add(bigInteger2));
        // 转换为short:shortValue()
        System.out.println("bigInteger3.shortValue() = " + bigInteger3.shortValue());
        // 转换为int:intValue()
        System.out.println("bigInteger3.intValue() = " + bigInteger3.intValue());
        // 转换为float:floatValue()
        System.out.println("bigInteger3.floatValue() = " + bigInteger3.floatValue());
        // 转换为double:doubleValue()
        System.out.println("bigInteger3.doubleValue() = " + bigInteger3.doubleValue());
        // 转换为byte:byteValue()
        System.out.println("bigInteger3.byteValue() = " + bigInteger3.byteValue());
        // 转换为long:longValue()
        System.out.println("bigInteger3.longValue() = " + bigInteger3.longValue());
        // 如果`BigInteger`表示的范围超过了基本类型的范围,
        // 在转换时如果超出范围,将直接抛出`ArithmeticException`异常
        System.out.println("(bigInteger3.multiply(bigInteger3).longValueExact()) = " + (bigInteger3.multiply(bigInteger3).longValueExact()));
    

控制台输出

bigInteger.pow(5) = 2867957643217673649618338593780775741137020576
bigInteger1.add(bigInteger2) = 912880251332
bigInteger3.shortValue() = -25280
bigInteger3.intValue() = 81698112
bigInteger3.floatValue() = 1.29665997E10
bigInteger3.doubleValue() = 1.29666E10
bigInteger3.byteValue() = 64
bigInteger3.longValue() = 12966600000
Exception in thread "main" java.lang.ArithmeticException: BigInteger out of long range

小结

  • BigDecimal用于表示精确的小数

  • 比较BigDecimal的值是否相等,必须使用compareTo()而不能使用equals()

  • BigInteger表示任意大小的整数

  • BigInteger转换为基本类型可使用longValueExact()等方法保证结果准确

参考资料
BigInteger

BigDecimal

以上是关于java中BigDecimal和bigInteger如何转换的主要内容,如果未能解决你的问题,请参考以下文章

Java 中大数的处理方案BigInteger和BigDecimal类的使用

BigInteger与BigDecimal

Java 中大数的处理方案BigInteger和BigDecimal类的使用

Java中BigDecimal和BigInteger用法知识点补充

Java中BigDecimal和BigInteger用法知识点补充

BigInteger与BigDecimal