我明天有一个测试,我无法理解我的书籍解释,我感谢帮助:
public class TestClass{
public static void main(String[] args) throws Exception{
int a = Integer.MIN_VALUE;
int b = -a;
System.out.println( a+ " "+b);
}
}
输出:-2147483648 -2147483648
为什么这会打印 2 个相同大小的负数而不是正数和负数?