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

类型转换错误使用

时间:2021-03-01 14:18:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:system   public   string   lang   错误   溢出   main   转换   str   

public static void main(String[] args) {
    int num1 = 10_0000_0000;
    int rate = 20;
    long total = num1 * rate;
    System.out.println(total);// 输出为-1474836480 原因:转换前计算结果已经溢出 ,int 类型的范围 21亿多
    
    long total_fix = (long) num1 * rate;
    System.out.println(total_fix);// 输出为20000000000
}

类型转换错误使用

标签:system   public   string   lang   错误   溢出   main   转换   str   

原文地址:https://www.cnblogs.com/justwannafly/p/14460516.html

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