47

是否可以覆盖 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/

4

5 回答 5

29

那是因为==运算符不只比较原语,因此不调用该valueOf()函数。您使用的其他运算符仅适用于原语。恐怕你不能用 Javascript 实现这样的事情。有关更多详细信息,请参阅http://www.2ality.com/2011/12/fake-operator-overloading.html 。

于 2012-05-10T18:29:28.763 回答
15

捎带@Corkscreewe:

这是因为您正在处理对象,并且等价运算符只会比较两个变量是否引用同一个对象,而不是两个对象是否在某种程度上相等。

一种解决方案是在变量前面使用“+”并为对象定义一个 valueOf 方法。这会调用每个对象的 valueOf 方法以将其值“转换”为数字。您已经找到了这个,但可以理解的是,似乎对它不太满意。

一个更具表现力的解决方案可能是为您的对象定义一个 equals 函数。使用上面的示例:

Obj.prototype.equals = function (o) {
    return this.valueOf() === o.valueOf();
};

var x = new Obj(42);
var y = new Obj(42);
var z = new Obj(10);

x.equals(y); // true
x.equals(z); // false

我知道这并不完全符合您的要求(重新定义等效运算符本身),但希望它能让您更接近一点。

于 2012-05-10T19:07:01.193 回答
5

如果您正在寻找完整的对象比较,那么您可能想要使用与此类似的东西。

/*
    Object.equals

    Desc:       Compares an object's properties with another's, return true if the objects
                are identical.
    params:
        obj = Object for comparison
*/
Object.prototype.equals = function(obj)
{

    /*Make sure the object is of the same type as this*/
    if(typeof obj != typeof this)
        return false;

    /*Iterate through the properties of this object looking for a discrepancy between this and obj*/
    for(var property in this)
    {

        /*Return false if obj doesn't have the property or if its value doesn't match this' value*/
        if(typeof obj[property] == "undefined")
            return false;   
        if(obj[property] != this[property])
            return false;
    }

    /*Object's properties are equivalent */
    return true;
}
于 2012-05-10T19:15:53.840 回答
3

您可以使用 ES6Object.is()函数来检查对象的属性。

Object.prototype.equals = function(obj)
{
    if(typeof obj != "Object")
        return false;
    for(var property in this)
    {
        if(!Object.is(obj[property], this[property]))
            return false;
    }
    return true;
}
于 2017-01-01T18:51:28.083 回答
-4

();根据您的要求,添加可能会有所帮助。

var Obj = function (val) {
    this.value = val;
}();
于 2020-04-01T12:15:49.590 回答