我是编程新手。我正在从Java对象编程书中学习,并在计算机上同时执行本书的教程和示例。 在书中它说整数的最大值和最小值是;
Integer.MAX_VALUE = 2147483647
Integer.MIN_VALUE = -2147483648
好的。这里没有问题但是; 它说如果我们将1加到最大值并从最小值中减1;
class test {
public static void main(String[] args) {
int min = Integer.MIN_VALUE -1;
int max = Integer.MAX_VALUE +1;
int a = min - 1;
int b = max + 1;
System.out.println("min - 1 =" + a);
System.out.println("max - 1 =" + b);
}
}
因此我们找到了;
min - 1 = 2147483646
max + 1 = -2147483647
并且它说这个结果是因为内存中的二进制进程受限于32位。 我无法理解的事情。在这段代码中,它不是分别从最大值和最小值中加上和减去2;
int min = Integer.MIN_VALUE -1; // subtracted 1 here
int max = Integer.MAX_VALUE +1; // added 1 here
int a = min - 1; // subtracted 1 here
int b = max + 1; // added 1 here
答案 0 :(得分:4)
请注意,a
为Integer.MAX_VALUE - 1
,b
为Integer.MIN_VALUE + 1
。所以是的,它确实减去并在每种情况下加1次。这本书没有错,但这是一种关于环绕溢出的愚蠢教学方式。只需打印Integer.MIN_VALUE - 1
和Integer.MAX_VALUE + 1
即可。
int min = Integer.MIN_VALUE -1; // min is set to Integer.MAX_VALUE by underflow
int max = Integer.MAX_VALUE +1; // max is set to Integer.MIN_VALUE by overflow
来自Java Language Specification, §15.18.2:
如果整数加法溢出,则结果是数学和的低阶位,如某些足够大的二进制补码格式所示。
JLS是这类问题的最终权威,但我不建议将其作为学习Java的一种方式。你最好通过Java Language Tutorial。它相当全面,内容质量非常高。