本文介绍了System.out.println(4 * 2147483647)在Java中如何等于-4?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Java初学者,对此颇为困惑.
I am a Java beginner and pretty confused with this.
System.out.println(4 * 2147483647)
在Java中如何等于-4?
How is System.out.println(4*2147483647)
equal to -4 in java?
推荐答案
这是由于整数静默溢出造成的.
It is due to integer silent overflow.
2147483647 == Integer.MAX_VALUE
是整数的最大值.
严重溢出意味着 2147483647 + 1 == Integer.MIN_VALUE = -2147483648
然后您可以看到 2147483647 + 2147483647 == 2147483647 +(-2147483648 +1-== -2
换句话说, 2147483647 * 2 == -2
,现在您可以了解为什么 2147483647 * 4 == -4
.
In other words, 2147483647 * 2 == -2
, and you can now see why 2147483647 * 4 == -4
.
从技术上讲,结果由定义Java语言规范#15.17.1 :
这篇关于System.out.println(4 * 2147483647)在Java中如何等于-4?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!