【问题标题】:How can I remove the decimals without rounding the number in AS3?如何在不四舍五入 AS3 的情况下删除小数?
【发布时间】:2015-01-06 17:08:41
【问题描述】:

通常,我会使用 toFixed 来减少小数,但这次我需要不四舍五入。 示例:3.99 -> 3 我该怎么做?

【问题讨论】:

标签: actionscript-3 decimal


【解决方案1】:

你可以使用int

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

Math.floor

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

【讨论】:

  • 另外,如果您希望将数字截断到某个小数位,您可以使用Math.floor(number*10)/10,并可能使用toFixed() 换行以避免讨厌的0.000000001。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多