int数据类型的最大值的加上1变成负的最小值的问题的解释...
Posted 浪子_江流儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int数据类型的最大值的加上1变成负的最小值的问题的解释...相关的知识,希望对你有一定的参考价值。
- 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
- }
- }
以上是关于int数据类型的最大值的加上1变成负的最小值的问题的解释...的主要内容,如果未能解决你的问题,请参考以下文章