JS toFixed 四舍六入五成双
Posted Anhw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS toFixed 四舍六入五成双相关的知识,希望对你有一定的参考价值。
以前一直以为toFixed就是四舍五入的方法,后来又有一段时间以为toFixed是五舍六入。今天终于写的时候,终于才知道toFixed是一个叫做四舍六入无成双的诡异的方法。。。
完全不明白为什么要这么写。。。
什么是四舍六入五成双:百度是这么说的:
对于位数很多的近似数,当有效位数确定后,其后面多余的数字应该舍去,只保留有效数字最末一位,这种修约(舍入)规则是“四舍六入五成双”,也即“4舍6入5凑偶”这里“四”是指≤4 时舍去,"六"是指≥6时进上,"五"指的是根据5后面的数字来定,当5后有数时,舍5入1;当5后无有效数字时,需要分两种情况来讲:①5前为奇数,舍5入1;②5前为偶数,舍5不进。(0是偶数)
所以也就是说: (0.557).toFixed(2) => 0.56 然而 (0.567).toFixed(2)=>0.56,这并不是我们想用的四舍五入的方法。所以可以这么修改:
基础方法:
//乘法函数 function accMul(arg1, arg2) { var m = 0, s1 = arg1.toString(), s2 = arg2.toString(); try { m += s1.split(".")[1].length; } catch (e) { } try { m += s2.split(".")[1].length; } catch (e) { } return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m); } //给Number类型增加一个mul方法,使用时直接用 .mul 即可完成计算。 Number.prototype.mul = function (arg) { return accMul(arg, this); }; //除法函数 function accDiv(arg1, arg2) { var t1 = 0, t2 = 0, r1, r2; try { t1 = arg1.toString().split(".")[1].length; } catch (e) { } try { t2 = arg2.toString().split(".")[1].length; } catch (e) { } with (Math) {//关于js中with关键字的使用请查看链接 http://luopq.com/2016/02/14/js-with-keyword/ r1 = Number(arg1.toString().replace(".", "")); r2 = Number(arg2.toString().replace(".", "")); return (r1 / r2) * pow(10, t2 - t1); } } //给Number类型增加一个div方法,使用时直接用 .div 即可完成计算。 Number.prototype.div = function (arg) { return accDiv(this, arg); };
toFixed方法:
// 修改toFixed方法,由原本的四舍六入五成双,改为四舍五入 Number.prototype.toFixed = function(s) { changenum=(parseInt(this.mul(Math.pow( 10, s ) + 0.5)).div(Math.pow( 10, s ))).toString(); index=changenum.indexOf("."); if(index<0&&s>0){ changenum=changenum+"."; for(i=0;i<s;i++){ changenum=changenum+"0"; } }else { index=changenum.length-index; for(i=0;i<(s-index)+1;i++){ changenum=changenum+"0"; } } return changenum; }
转自:http://www.68idc.cn/help/buildlang/ask/20150411317631.html
以上是关于JS toFixed 四舍六入五成双的主要内容,如果未能解决你的问题,请参考以下文章