美文网首页
Math.round()四舍五入取整原理

Math.round()四舍五入取整原理

作者: hunter400 | 来源:发表于2016-08-10 23:38 被阅读0次

    Math.round的实现方法:

    public static long round(double a) {

    if (a != 0x1.fffffffffffffp-2) // greatest double value less than 0.5

    return (long)floor(a + 0.5d);

    else

    return 0;

    }

    分析这个方法,我们就可以知道,round方法是 +0.5 然后向下取整。(floor()地板的意思,即向下取整-取比当前数字小的整数,ceil()是天花板的意思,即向上取整-取比当前数字大的整数)

    例如:Math.round(3.5);//3.5+0.5 = 4 向下取整:4

    Math.round(-3.5);//-3.5+0.5 = -3 向下取整:-3

    相关文章

      网友评论

          本文标题:Math.round()四舍五入取整原理

          本文链接:https://www.haomeiwen.com/subject/pfijsttx.html