ActionScript 3 将数字舍入为X小数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 将数字舍入为X小数相关的知识,希望对你有一定的参考价值。

/* Returns a string representation of the number in fixed-point notation. 
Fixed-point notation means that the string will contain a specific number of digits after the decimal point, as specified in the fractionDigits parameter. 
The valid range for the fractionDigits parameter is from 0 to 20. 
Specifying a value outside this range throws an exception. 

*/

var num:Number = 4;
trace(num.toFixed(2)); // 4.00

var num:Number = 7.31343;
trace(num.toFixed(3)); // 7.313

以上是关于ActionScript 3 将数字舍入为X小数的主要内容,如果未能解决你的问题,请参考以下文章

将 BigDecimal 舍入为 *always* 有两位小数

js四舍五入

将双精度数舍入到 x 有效数字

在字母数字 NSString 中将 FLOATS 向上/向下舍入为 INTS

四舍五入round()

R_数据操作(高级)_04