js中浮點數計算常用方法

學前端的小新發表於2018-11-23

眾所周知,js在計算浮點數時候,結果可能會不準確。比如:(在chrome中的運算結果) 
2.2 + 2.1 = 4.300000000000001 
2.2 - 1.9 = 0.30000000000000027 
2.2 * 2.2 = 4.840000000000001 
2.1 / 0.3 = 7.000000000000001
以下為整理好的方法複製程式碼

1.加法

function add(a, b) {
    var c, d, e;
    try {
        c = a.toString().split(".")[1].length;
    } catch (f) {
        c = 0;
    }
    try {
        d = b.toString().split(".")[1].length;
    } catch (f) {
        d = 0;
    }
    return e = Math.pow(10, Math.max(c, d)), (mul(a, e) + mul(b, e)) / e;
}複製程式碼

2.減法

function sub(a, b) {
    var c, d, e;
    try {
        c = a.toString().split(".")[1].length;
    } catch (f) {
        c = 0;
    }
    try {
        d = b.toString().split(".")[1].length;
    } catch (f) {
        d = 0;
    }
    return e = Math.pow(10, Math.max(c, d)), (mul(a, e) - mul(b, e)) / e;
}複製程式碼

3.乘法

function mul(a, b) {
    var c = 0,
        d = a.toString(),
        e = b.toString();
    try {
        c += d.split(".")[1].length;
    } catch (f) {}
    try {
        c += e.split(".")[1].length;
    } catch (f) {}
    return Number(d.replace(".", "")) * Number(e.replace(".", "")) / Math.pow(10, c);
}複製程式碼

4.除法

function div(a, b) {
    var c, d, e = 0,
        f = 0;
    try {
        e = a.toString().split(".")[1].length;
    } catch (g) {}
    try {
        f = b.toString().split(".")[1].length;
    } catch (g) {}
    return c = Number(a.toString().replace(".", "")), d = Number(b.toString().replace(".", "")), mul(c / d, Math.pow(10, f - e));
}複製程式碼

原文:https://blog.csdn.net/qinshenxue/article/details/43671763 


相關文章