关于int数据类型的数的最大值加上一之后变成负的最小值的问题的解释!!
- public class Test {
- public static void main(String[] args) {
- int max = Integer.MAX_VALUE;
- int min = Integer.MIN_VALUE;
- System.out.println("int的最大值: " + max); //01111111 11111111 11111111 11111111
- System.out.println("int的最大值+1: " + (max+1)); //11111111 11111111 11111111 11111111
- System.out.println("int的最小值: " + min); //10000000 00000000 00000000 00000000
- System.out.println("int的最小值-1: " + (min-1)); //01111111 11111111 11111111 11111111
- }
- }
时间: 2024-12-15 03:48:15