ActionScript 3 浮点数的舍入误差
示例
/**
* @param n Number to be rounded.
* @param precision Decimal places.
* @return Rounded Number
*/
function roundDecimal(n:Number, precision:Number):Number {
var factor:int = Math.pow(10, precision);
return (Math.round(n * factor) / factor);
}例子:
trace(0.9 - 1); //-0.09999999999999998 trace(roundDecimal(0.9 - 1, 1)); //-0.1 trace(roundDecimal(0.9 - 1, 2)); //-0.1 trace(roundDecimal(0.9 - 1.123, 1)); //-0.2 trace(roundDecimal(0.9 - 1.123, 2)); //-0.22 trace(roundDecimal(0.9 - 1.123, 3)); //-0.223
热门推荐
10 接亲新婚祝福语大全简短
11 假期愉快蛋糕祝福语简短
12 朋友古言祝福语简短
13 离别对同事祝福语简短
14 员工年中贺卡祝福语简短
15 可爱小狗祝福语简短
16 清晨祈祷的祝福语简短
17 邻居进新房祝福语简短
18 面试升职祝福语简短精辟