Math roundceilfloor

Posted Observer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math roundceilfloor相关的知识,希望对你有一定的参考价值。

不同方法的取舍原则:

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 roundceilfloor的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 有用的代码片段和 trick

实用代码片段

如何在UL中迭代使用appendChild和片段LI?

常用js片段

微信小程序代码片段

VSCode自定义代码片段——CSS选择器