码迷,mamicode.com
首页 > 其他好文 > 详细

int数据类型的最大值的加上1变成负的最小值的问题的解释...

时间:2016-11-09 22:43:08      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:tool   数据类型   comm   class   []   bsp   com   bar   keyword   

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

int数据类型的最大值的加上1变成负的最小值的问题的解释...

标签:tool   数据类型   comm   class   []   bsp   com   bar   keyword   

原文地址:http://www.cnblogs.com/yxb9527/p/6048745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!