在JavaScript中重载算术运算符?

时间:2009-10-27 23:38:05

标签: javascript operator-overloading

考虑到这个JavaScript“类”定义,这是我能想到的最好的解决这个问题的方法:

var Quota = function(hours, minutes, seconds){
    if (arguments.length === 3) {
        this.hours = hours;
        this.minutes = minutes;
        this.seconds = seconds;

        this.totalMilliseconds = Math.floor((hours * 3600000)) + Math.floor((minutes * 60000)) + Math.floor((seconds * 1000));
    }
    else if (arguments.length === 1) {
        this.totalMilliseconds = hours;

        this.hours = Math.floor(this.totalMilliseconds / 3600000);
        this.minutes = Math.floor((this.totalMilliseconds % 3600000) / 60000);
        this.seconds = Math.floor(((this.totalMilliseconds % 3600000) % 60000) / 1000);
    }

    this.padL = function(val){
        return (val.toString().length === 1) ? "0" + val : val;
    };

    this.toString = function(){
        return this.padL(this.hours) + ":" + this.padL(this.minutes) + ":" + this.padL(this.seconds);
    };

    this.valueOf = function(){
        return this.totalMilliseconds;
    };
};

以及以下测试设置代码:

var q1 = new Quota(23, 58, 50);
var q2 = new Quota(0, 1, 0);
var q3 = new Quota(0, 0, 10);

console.log("Quota 01 is " + q1.toString());    // Prints "Quota 01 is 23:58:50"
console.log("Quota 02 is " + q2.toString());    // Prints "Quota 02 is 00:01:00"
console.log("Quota 03 is " + q3.toString());    // Prints "Quota 03 is 00:00:10"

有没有办法使用加法运算符隐式创建q4作为Quota对象,如下所示......

var q4 = q1 + q2 + q3;
console.log("Quota 04 is " + q4.toString());    // Prints "Quota 04 is 86400000"

而不是诉诸...

var q4 = new Quota(q1 + q2 + q3);
console.log("Quota 04 is " + q4.toString());    // Prints "Quota 04 is 24:00:00"

如果不是这个领域的最佳实践建议是什么,可以通过算术运算符组合自定义数字JavaScript对象?

11 个答案:

答案 0 :(得分:33)

据我所知,Javascript(至少现在存在)不支持运算符重载。

我能建议的最好的方法是从其他几个方法制作新的配额对象的类方法。这是我的意思的一个简单例子:

// define an example "class"
var NumClass = function(value){
    this.value = value;
}
NumClass.prototype.toInteger = function(){
    return this.value;
}

// Add a static method that creates a new object from several others
NumClass.createFromObjects = function(){
    var newValue = 0;
    for (var i=0; i<arguments.length; i++){
        newValue += arguments[i].toInteger();
    }
    return new this(newValue)
}

并使用它:

var n1 = new NumClass(1);
var n2 = new NumClass(2);
var n3 = new NumClass(3);

var combined = NumClass.createFromObjects(n1, n2, n3);

答案 1 :(得分:19)

不幸的是没有。

对于后备,如果您安排了返回值,则可以使用方法链接

var q4 = q1.plus(p2).plus(q3);

答案 2 :(得分:13)

由于每个人都投了我的另一个答案,我想发布概念代码的证明,这实际上按预期工作。

已在chrome和IE中测试过。

//Operator Overloading

var myClass = function () {

//Privates

var intValue = Number(0),
    stringValue = String('');

//Publics
this.valueOf = function () {
    if (this instanceof myClass) return intValue;
    return stringValue;
}

this.cast = function (type, call) {
    if (!type) return;
    if (!call) return type.bind(this);
    return call.bind(new type(this)).call(this);
}

}

//Derived class
var anotherClass = function () {

//Store the base reference
this.constructor = myClass.apply(this);

var myString = 'Test',
    myInt = 1;

this.valueOf = function () {
    if (this instanceof myClass) return myInt;
    return myString;
}

}


//Tests

var test = new myClass(),
anotherTest = new anotherClass(),
composed = test + anotherTest,
yaComposed = test.cast(Number, function () {
    return this + anotherTest
}),
yaCComposed = anotherTest.cast(Number, function () {
    return this + test;
}),
t = test.cast(anotherClass, function () {
    return this + anotherTest
}),
tt = anotherTest.cast(myClass, function () {
    return this + test;
});

debugger;

如果有人愿意提供技术解释为什么这不够好我会很高兴听到它!

答案 3 :(得分:7)

第二个建议:

var q4 = Quota.add(q1, q2, q3);

答案 4 :(得分:5)

我最近发现了这篇文章:http://www.2ality.com/2011/12/fake-operator-overloading.html

它描述了如何在对象上重新定义valueOf方法,以便在javascript中执行类似运算符重载的操作。看起来你只能对正在操作的对象执行mutator操作,所以它不会做你想要的。尽管如此,它很有趣。

答案 5 :(得分:4)

你可以隐式转换为整数或字符串,你的对象

如果JavaScript需要数字或字符串,则只会隐式转换对象。在前一种情况下,转换需要三个步骤:

1.-调用valueOf()。如果结果是原始的(不是对象),则使用它并将其转换为数字。

2.-否则,调用toString()。如果结果是原始的,请使用它并将其转换为数字。

3.-否则,抛出TypeError。 步骤1的示例:

  

3 * {valueOf:function(){return 5}}

如果JavaScript转换为字符串,则交换步骤1和2:首先尝试toString(),然后尝试valueOf()秒。

http://www.2ality.com/2013/04/quirk-implicit-conversion.html

答案 6 :(得分:4)

Paper.js会这样做,例如加点(docs):

var point = new Point(5, 10);
var result = point + 20;
console.log(result); // {x: 25, y: 30}

但是它使用自己的custom script parser

答案 7 :(得分:2)

我不确定为什么人们会继续回答这个问题!

绝对有一种方法可以用一个非常小的脚本概述,你不必是John Resig就能理解......

在我这样做之前,我还将在JavaScript中说明构造函数的工作方式是检查数组或迭代'arguments'文字。

e.g。在我的“类”的构造函数中,我将迭代这些arugments,确定底层arugments的类型并智能地处理它。

这意味着如果您传递了一个数组,我会迭代这些数据以找到一个数组,然后根据数组中元素的类型迭代数组进行进一步处理。

E.g。 - &GT; new someClass([instanceA,instanceB,instanceC])

然而,你们正在寻求一种更“C”式的操作符重载方法,这种方法实际上可以与普遍的信念相悖。

这是我使用MooTools创建的一个类,它确实支持运算符重载。在普通的旧JavaScript中,您只需使用相同的toString方法,只需将其直接附加到实例的原型。

我显示这种方法的主要原因是因为我不断阅读的文本指出这个功能“不可能”模仿。没有什么是不可能的,只是非常困难,我将在下面显示...

 //////

debugger;

//Make a counter to prove I am overloading operators
var counter = 0;

//A test class with a overriden operator
var TestClass = new Class({
    Implements: [Options, Events],
    stringValue: 'test',
    intValue: 0,
    initialize: function (options) {
        if (options && options instanceof TestClass) {
            //Copy or compose
            this.intValue += options.intValue;
            this.stringValue += options.stringValue;
        } else {
            this.intValue = counter++;
        }
    },
    toString: function () {
        debugger;
        //Make a reference to myself
        var self = this;
        //Determine the logic which will handle overloads for like instances
        if (self instanceof TestClass) return self.intValue;
        //If this is not a like instance or we do not want to overload return the string value or a default.
        return self.stringValue;
    }
});

//Export the class
window.TestClass = TestClass;

//make an instance
var myTest = new TestClass();

//make another instance
var other = new TestClass();

//Make a value which is composed of the two utilizing the operator overload
var composed = myTest + other;

//Make a value which is composed of a string and a single value
var stringTest = '' + myTest;

//////

在XDate的文档页面上观察到了这种命名法的最新显示: http://arshaw.com/xdate/

在这种情况下,我相信它实际上更加轻松,他本可以使用Date对象的原型来实现相同的目标。

尽管我作为一个例子给出的方法应该为其他人描绘这种利用方式。

编辑:

我在这里有一个完整的实现:

http://netjs.codeplex.com/

与其他好东西一起。

答案 8 :(得分:2)

我创建了一个在JavaScript中执行运算符重载的脚本。它并没有直接开展工作,所以有一些怪癖。我将从项目页面交叉发布警告,否则您可以在底部找到链接:

  • 必须将计算结果传递给一个新对象,所以代替(p1 + p2 + p3)你必须做新点(p1 + p2 + p3),(假设用户定义的对象命名为&# 34;点&#34)

  • 仅支持+, - ,*和/,第五个算术运算符%不支持。 强制转换为字符串(&#34;&#34; + p1)和比较(p1 == p2)将无法按预期工作。如果需要,应为这些目的建立新功能,例如(p1.val == p2.val)。

  • 最后,计算答案所需的计算资源随着术语的数量呈二次方式增加。因此,每个默认值在一个计算链中只允许6个术语(尽管可以增加)。对于比这更长的计算链,将计算分开,如:新点(新点(p1 + p2 + p3 + p4 + p5 + p6)+新点(p7 + p8 + p9 + p10 + p11 + p12))< / p>

Github page

答案 9 :(得分:1)

除了已经说过的内容:重写.valueOf()可能有助于产生非常强大的运算符重载。在概念验证Fingers.js lib中,您可以使用.NET样式添加事件侦听器:

function hi() { console.log("hi") }
function stackoverflow() { console.log("stackoverflow") }
function bye() { console.log("bye") }

on(yourButton).click += hi + stackoverflow;
on(yourButton).click -= hi - bye;

核心思想是在调用on()时暂时替换valueOf:

const extendedValueOf = function () {
    if (handlers.length >= 16) {
        throw new Error("Max 16 functions can be added/removed at once using on(..) syntax");
    }

    handlers.push(this); // save current function

    return 1 << ((handlers.length - 1) * 2); // serialize it as a number.
};

然后可以使用处理程序数组将返回的数字反序列化回函数。还有什么可以从最终值(func1 + func2-func3)中提取位值,这样您就可以有效地了解添加的功能以及删除的功能。

您可以在github查看来源,然后使用demo here

这个article中存在完整的解释(对于AS3而言,这很难,因为它的ecmascript也适用于JS)。

答案 10 :(得分:-1)

对于某些有限的用例,您可以使用运算符&#34;重载&#34;效果:

function MyIntyClass() {
    this.valueOf = function() { return Math.random(); }
}
var a = new MyIntyClass();
var b = new MyIntyClass();
a < b
false

a + b
0.6169137847609818

[a, b].sort() // O(n^2) ?
[myClass, myClass]

function MyStringyClass() {
    this.valueOf = function() { return 'abcdefg'[Math.floor(Math.random()*7)]; }
}
c = new MyStringyClass();
'Hello, ' + c + '!'
Hello, f!

上述代码可在MIT许可下免费使用。 YMMV。