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

int的小测验题

时间:2020-07-17 22:08:55      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:形式   span   超出   row   式表   ati   public   main   pre   

先看程序

 public static void main(String[] args) throws Throwable {
        int num = 2147483647 ;
        num += 2 ;
        System.out.println(num) ;
    }

java中int的取值范围为-2147483648到+2147483648。当结果超出int的范围后,将采用补码的形式表示。原码转换为补码的规则:符号位不变,数值位按位取反,末位再加1。

所以运行的结果大家自己卡伊跑下程序看看

int的小测验题

标签:形式   span   超出   row   式表   ati   public   main   pre   

原文地址:https://www.cnblogs.com/lchzlp/p/13332695.html

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