如何在不对AS3中的数字进行舍入的情况下删除小数?

时间:2014-11-10 11:44:10

标签: actionscript-3 decimal

通常,我会使用toFixed来获得更少的小数,但这次我需要数字不要舍入。 示例:3.99 - > 3 我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

您可以使用int

trace(int(3.99))           // gives : 3

Math.floor

trace(Math.floor(3.99))    // gives : 3