java的-0和0,Java中的0.0和-0.0(IEEE 754)

本文探讨了Java中浮点数加减运算的规则,特别关注为何0.0与-0.0相加结果为0.0。根据IEEE 754标准,Java处理负零与正零相等,解答了疑惑并指出'=='在Java中的特殊行为。

Java is totally compatible with IEEE 754 right? But I'm confused about how java decide the sign of float point addition and substraction.

Here is my test result:

double a = -1.5;

double b = 0.0;

double c = -0.0;

System.out.println(b * a); //-0.0

System.out.println(c * a); //0.0

System.out.println(b + b); //0.0

System.out.println(c + b); //0.0

System.out.println(b + c); //0.0

System.out.println(b - c); //0.0

System.out.println(c - b); //-0.0

System.out.println(c + c); //-0.0

I think in the multiplication and division, the sign is decided like: sign(a) xor sign(b),

but I wonder why 0.0 + -0.0 = 0.0, how does Java decide the sign in addition and substraction? Is it described in IEEE 754?

Also I found Java can somehow distinguish the similarities between 0.0 and -0.0, since

System.out.println(c == b); //true

System.out.println(b == c); //true

How does "==" in java works?

Is it treated as a special case?

解决方案

There's nothing here specific to Java, it's specified by IEEE754.

According to the IEEE 754 standard, negative zero and positive zero

should compare as equal with the usual (numerical) comparison

operators, like the == operators of C and Java.

So the following numbers compare equal:

(+0) - (-0) == +0

You'll get the same behavior in all modern languages when dealing with raw floating point numbers.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值