是否可以覆盖 Javascript 中的等价比较?
我得到的最接近解决方案的方法是定义 valueOf 函数并在对象前面使用加号调用 valueOf。
这行得通。
equal(+x == +y, true);
但这失败了。
equal(x == y, true, "why does this fail.");
这是我的测试用例。
var Obj = function (val) {
this.value = val;
};
Obj.prototype.toString = function () {
return this.value;
};
Obj.prototype.valueOf = function () {
return this.value;
};
var x = new Obj(42);
var y = new Obj(42);
var z = new Obj(10);
test("Comparing custom objects", function () {
equal(x >= y, true);
equal(x <= y, true);
equal(x >= z, true);
equal(y >= z, true);
equal(x.toString(), y.toString());
equal(+x == +y, true);
equal(x == y, true, "why does this fails.");
});
在这里演示:http: //jsfiddle.net/tWyHg/5/