double nan java,Java:BigDecimal和Double.NaN

博客探讨在Java里用BigDecimal表示Double.NaN的问题。执行相关代码时会抛出NumberFormatException,原因是BigDecimal类不支持NaN、+∞或 -∞的表示。还给出解决方案,如创建包装类处理特殊值。

I am trying to execute following code:

import java.math.*;

public class HelloWorld{

public static void main(String []args){

System.out.println(BigDecimal.valueOf(Double.NaN));

}

}

And reasonably, I am getting:

Exception in thread "main" java.lang.NumberFormatException

at java.math.BigDecimal.(BigDecimal.java:470)

at java.math.BigDecimal.(BigDecimal.java:739)

at java.math.BigDecimal.valueOf(BigDecimal.java:1069)

at HelloWorld.main(HelloWorld.java:6)

Is there a way to represent Double.NaN in BigDecimal?

解决方案

Is there a way to represent Double.NaN in BigDecimal?

No. The BigDecimal class provides no representation for NaN, +∞ or -∞.

You might consider using null ... except that you need at least 3 distinct null values to represent the 3 possible cases, and that is not possible.

You could consider creating a subclass of BigDecimal that handles these "special" values, but it may be simpler to implement your "numbers" as a wrapper for BigDecimal, and treat NaN and the like as special cases; e.g.

public class MyNumber {

private BigDecimal value;

private boolean isNaN;

...

private MyNumber(BigDecimal value, boolean isNaN) {

this.value = value;

this.isNaN = isNan;

}

public MyNumber multiply(MyNumber other) {

if (this.isNaN || other.isNaN) {

return new MyNumber(null, true);

} else {

return new MyNumber(this.value.multiply(other.value), false);

}

}

// etcetera

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值