JAVA中BigDecimal数据类型
JAVA中BigDecimal数据
⼀点说明:float和double类型的主要设计⽬标是为了科学计算和⼯程计算。他们执⾏⼆进制浮点运算,这是为了在⼴域数值范围上提供
较为精确的快速近似计算⽽精⼼设计的。然⽽,它们没有提供完全精确的结果,所以不应该被⽤于要求精确结果的场合。但是,货币计算往往要求结果精确,这时候可以使⽤int、long或BigDecimal。
⽤
解决的两个问题,BigDecimal类型数字⽐较(⼤⼩精度)
-1,BigDecimal类型数据⽐较⽅法
-2,BIgDecimal中数据格式的控制(格式化类型,以及保留类型)
-3,BigDecimal是不可变类
第⼀个问题:⽐较的时候⼀般⽤:compareTo
BigDecimal a=new BigDecimal("2.00");
BigDecimal b=new BigDecimal("2.0");
bigdecimal格式化两位小数apareTo(b)=0;//⽐较精度和⼤⼩ true
a.equals(b)=0;//不⽐较精度 false
/**
加⼀点,在使⽤过程中对Bigdecimal另外i⾏数据判空的时候直接使⽤==null即可
**/
第⼆个问题:
适⽤情况:有多位⼩数保留其中的某⼏位
BigDecimal a=new BigDecimal(2.888);
a.setScale(2,RoundingMode.HALF_UP);//后⾯参数是四舍五⼊,也有其他模式的
/
/ 2.89
格式控制:
DecimalFormat df1 =new DecimalFormat("####.000");
System.out.println(df1.format(1234.56));//1234.560
BigDecimal是不可变类:每⼀个操作(加减乘除等)都会返回⼀个新的对象
BigDecimal a =new BigDecimal("1.22");
System.out.println("construct with a String value: "+ a);//a=1.22
BigDecimal b =new BigDecimal("2.22");
a.add(b);
System.out.println("a plus b is : "+ a);//a=1.22不是3.44
追加⼀些Integer和int的知识:
由于Integer变量实际上是对⼀个Integer对象的引⽤,所以两个通过new⽣成的Integer变量永远是不相等的(因为new⽣成的是两个对象,其内存地址不同)。
Integer i =new Integer(100);
Integer j =new Integer(100);
System.out.print(i == j);//false
System.out.print(i.equals(i));//true
Integer变量和int变量⽐较时,只要两个变量的值是向等的,则结果为true(因为包装类Integer和基本数据类型int⽐较时,java会⾃动拆包装为int,然后进⾏⽐较,实际上就变为两个int变量的⽐较
Integer i =new Integer(100);
int j =100;
System.out.print(i == j);//true
⾮new⽣成的Integer变量和new Integer()⽣成的变量⽐较时,结果为false。(因为 ①当变量值在-128~
127之间时,⾮new⽣成的Integer变量指向的是java常量池中的对象,⽽new Integer()⽣成的变量指向堆中新建的对象,两者在内存中的地址不同;②当变量值在-128~127之间时,⾮new⽣成Integer变量时,java API中最终会按照new Integer(i)进⾏处理(参考下⾯第4条),最终两个Interger的地址同样是不相同的)
Integer i =new Integer(100);
Integer j =100;
System.out.print(i == j);//false
对于两个⾮new⽣成的Integer对象,进⾏⽐较时,如果两个变量的值在区间-128到127之间,则⽐较结果为true,如果两个变量的值不在此区间,则⽐较结果为false
Integer i =100;
Integer j =100;
System.out.print(i == j);//true
Integer i =128;
Integer j =128;
System.out.print(i == j);//false
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论