写写LISP,也只在一瞬间
发布于 7天前 作者 tulayang 273 次浏览 来自 分享
function op(type, a, b) {
  return op.operators[type](a, b);
}
 
op.operators = {
  '+': function (a, b) {return a + b;},
  '-': function (a, b) {return a - b;},
  '×': function (a, b) {return a * b;},
  '÷': function (a, b) {return a / b;},
  '%': function (a, b) {return a % b;}
};
 
op('+', op('-', op('×', 20000, 1010), 50000), op('÷', op('%', 963, 1000), 3));
6 回复

JS有运算符重载吗?

直接用 Lisp 吧

怎么想到用lisp了?

。。。。。

回到顶部