明日テストがあり、本の説明が理解できません。助けてくれてありがとう。
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つの負の数を出力するのですか?