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

Math round、ceil、floor

时间:2018-06-01 14:29:10      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:eval   ros   microsoft   数位   nbsp   int   mic   1.2   ble   

不同方法的取舍原则:

ceil:天花板,往大里取

floor:地板,往小里取

round:正数:四舍五入,5是分界点 负数:小数大于5(Math.round(-0.51)输出是-1,-0.5则是0),往小里取,反之,则往大里取

        System.out.println(Math.round(11.6));//12
        System.out.println(Math.round(11.2));//11
        System.out.println(Math.round(11.5));//12
        System.out.println(Math.round(-11.6));//-12
        System.out.println(Math.round(-11.5));//-11
        System.out.println(Math.round(-11.2));//-11
        System.out.println("");
        System.out.println(Math.ceil(11.2));//12
        System.out.println(Math.ceil(11.5));//12
        System.out.println(Math.ceil(11.6));//12
        System.out.println(Math.ceil(-11.2));//-11
        System.out.println(Math.ceil(-11.5));//-11
        System.out.println(Math.ceil(-11.6));//-11
        System.out.println("");
        System.out.println(Math.floor(11.2));//11
        System.out.println(Math.floor(11.5));//11
        System.out.println(Math.floor(11.6));//11
        System.out.println(Math.floor(-11.2));//-12
        System.out.println(Math.floor(-11.5));//-12
        System.out.println(Math.floor(-11.6));//-12

 BigDecimal

1.解决小数计算失去精度问题

BigDecimal bd1 = new BigDecimal("0.001");
BigDecimal bd2 = new BigDecimal("0.009");
double add = bd1.add(bd2).doubleValue();
System.out.println(add);

得到正确的0.01

2.小数位数保留

double db = 1.2346013123;
BigDecimal dd = new BigDecimal(db).setScale(2,BigDecimal.ROUND_HALF_UP );//保留两位,小数四舍五入
System.out.println(dd);

 

Math round、ceil、floor

标签:eval   ros   microsoft   数位   nbsp   int   mic   1.2   ble   

原文地址:https://www.cnblogs.com/whwjava/p/9121297.html

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