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

存在i+1< i的数吗?为什么?

时间:2019-11-16 12:59:44      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:author   ons   string   htm   static   公众号   小程序   试题   value   

存在,如 Integer.MAX_VALUE

package constxiong.interview;

/**
 * 测试最大值加1
 * @author ConstXiong
 */
public class TestMaxValueAddOne {

    public static void main(String[] args) {
        int i = Integer.MAX_VALUE;
        System.out.println(i+1<i);
        System.out.println(i+1);
    }
    
}

 

打印

true
-2147483648

 


 


技术图片

 

所有资源资源汇总于公众号

技术图片
 

 

存在i+1< i的数吗?为什么?

标签:author   ons   string   htm   static   公众号   小程序   试题   value   

原文地址:https://www.cnblogs.com/ConstXiong/p/11871154.html

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