Function.prototype.uncurry = function() {
var_this = this
returnfunction() {
returnFunction.prototype.call.apply(_this, arguments)
}
}
/*
然而不幸的是,越短小精悍的函数,往往在写法上更精妙,理解起来便更加不易。如上面这个函数,可以尝试翻译一下:
首先,反柯里化返回的也是函数,所以其调用的方法应该是这样一种形式:foo = somefun.uncurry,所以函数中的_this即是这里的somefun;
其次,观察其返回的结果:call.apply(_this, arguments),其中apply是令_this成为call的上下文,然后将参数传给call。所以当使用foo(arg1, arg2, ...)时,即是在执行somefun.call(arg1, arg2, ...);
最后,call函数的意思是令arg1成为somefun的上下文,然后将参数arg2, ...传给somefun,即是:arg1.somefun(arg2, ...);
*/
反柯里化
最新推荐文章于 2023-04-28 15:34:56 发布