本文主要是介绍Math.round|Math.floor|Math.ceil区别,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Math.round(val:Number):Number[静态] 将参数 val 的值向上或向下舍入为最接近的整数并返回该值。(即小数点后四舍五入)
Example:
trace(Math.round(4.4))–4
trace(Math.round(4.7))–5
Math.floor(val:Number):Number[静态] 返回由参数 val 指定的数字或表达式的下限值。(即小数点后全舍)
Example:
trace(Math.floor(4.4))–4
trace(Math.floor(4.7))–4
Math.ceil(val:Number):Number[静态] 返回指定数字或表达式的上限值。(即小数点后全入)
Example:
trace(Math.ceil(4.4))–5
trace(Math.ceil(4.7))–5
这篇关于Math.round|Math.floor|Math.ceil区别的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!