Math类中的取整方法
Posted hong_Yu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math类中的取整方法相关的知识,希望对你有一定的参考价值。
Math类提供了3个有关取整的方法:ceil()、floor()、round()。
这些方法与他们的英文名字相对应:
ceil,天花板,意思就是向上取整,Math.ceil(11.5)的结果为12,Math.ceil(-11.5)的结果为-11。
floor,地板,意思就是向下取整,Math.floor(11.5)的结果为11,Math.floor(-11.5)的结果为-12。
round,表示四舍五入,算法为:Math.floor(x+0.5),
即将原来的数字加上0.5后在向下取整,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。
以上是关于Math类中的取整方法的主要内容,如果未能解决你的问题,请参考以下文章