JS手撕(四) call、apply、bind、柯里化、偏函数
call
call()
方法就是使用一个指定的this
值和一个或多个参数来调用一个函数。
所以原理就是给传入的第一个参数添加临时方法,然后去调用这个临时方法,这个时候,这个方法的this
就会指向第一个参数啦,最后当然还要临时方法删除掉,不留下痕迹。
1 2 3 4 5 6 7 8 9 10 11 12 13
| Function.prototype.myCall = function (context, ...args) { context = context || window;
context.fn = this; console.log(this);
const result = context.fn(...args);
delete context.fn;
return result; }
|
测试:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| function myTest(a, b, c) { console.log(this); console.log(a, b, c); }
const obj = { name: 'clz', age: 21 }
myTest(1, 2, 3);
console.log('%c%s', 'font-size: 24px;color: red;', '==============') myTest.myCall(obj, 3, 4, 5);
|
apply
apply()
方法和call()
方法一样,都是使用一个指定的this
值,不同的是:**apply
的第二个参数是参数数组**。
所以和call
非常像。
1 2 3 4 5 6 7 8 9 10 11
| Function.prototype.myApply = function (context, args) { context = context || window;
context.fn = this;
const result = context.fn(...args);
delete context.fn;
return result; }
|
当然调用的时候还是有一点点不同的,第二个参数是参数数组,而不是像call()
方法一样,是一个或多个参数。
bind
bind()
也能够像上面一样,使用指定的this
值,不过有一个很大的不同,那就是bind()
是返回一个函数,而不是立即调用。
顺带提一下一个注意点:调用bind()
时,可以传参,调用该方法返回的函数也可以传参。所以会有两拨参数。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| function myTest(a, b, c, d, e, f) { console.log(this); console.log(a, b, c, d, e, f);
console.log(arguments) }
const obj = { name: 'clz', age: 21 }
const fn = myTest.bind(obj, 1, 2, 3); fn(4, 5, 6);
|
上面myTest
方法是需要六个参数的,通过bind
调用会先把第一个参数之外的1, 2, 3
作为myTest
的前三个参数,然后真正调用时,又把4, 5, 6
作为后三个参数。
手撕(简单版本)
1 2 3 4 5 6 7 8 9 10
| Function.prototype.myBind = function (context, ...args1) { context = context || window;
context.fn = this;
return function (...args2) { context.fn(...args1, ...args2); delete context.fn; } }
|
如果是构造函数,会有点问题。
1 2 3 4 5 6 7 8 9
| function Person(name, age) { this.name = name; this.age = age; }
const bindPerson = Person.myBind(null, 'tttt');
const person = new bindPerson(21); console.log(person);
|
我们得到的是空对象,实际上,我们想要的是Person {name: 'tttt', age: 21}
的结果,而且使用原生的bind
是能正常得到结果的。
这是因为我们没有区分构造函数的情况。所以还得改造一下之前的方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| Function.prototype.myBind = function (context, ...args1) { context = context || window;
context.fn = this;
const _this = this;
const result = function (...args2) { if (this instanceof _this) { this.fn = _this; this.fn(...args1, ...args2); delete this.fn; } else { context.fn(...args1, ...args2); delete context.fn; } }
result.prototype = Object.create(this.prototype); return result; }
|
1 2 3 4 5 6 7 8 9
| function Person(name, age) { this.name = name; this.age = age; }
const bindPerson = Person.myBind({ name: 'czz' }, 'tttt');
const person = new bindPerson(21); console.log(person);
|
curry(函数柯里化)
柯里化的意思就是将使用多个参数的函数转换成一系列使用一个参数的函数的技术。
即add(a, b) ===> add(a)(b)
。
使用柯里化能够实现参数复用。
就拿上面的add()
方法为例子,我们需要5
+ [5, 7]
的结果,不能循环而是只能一行一行地写。
没有柯里化:
1 2 3
| add(5, 5); add(5, 6); add(5, 7);
|
使用柯里化之后:(效率提升了,能打更多螺丝了)
1 2 3 4 5 6
| const addCurry = curry(add); const add5 = addCurry(5);
add(5); add(6); add(7);
|
具体实现就是返回一个函数,该函数会判断参数的数量有没有大于等于原函数的参数数量,如果等于直接返回结果,否则继续递归,直到数量大于等于原函数的参数数量。
1 2 3 4 5 6 7 8 9 10 11
| function curry(fn) { const result = function (...args1) { if (args1.length >= fn.length) { return fn.apply(this, args1) } else { return (...args2) => result(...args1, ...args2) } }
return result; }
|
测试:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| function add(a, b, c) { return a + b + c; }
const addCurry = curry(add);
const add5 = addCurry(5); console.log(add5(1)(6)); console.log(add5(2)(7)); console.log(add5(3)(8));
console.log('%c%s', 'color: red;font-size: 20px;', '====================')
const add56 = add5(6); console.log(add56(1)); console.log(add56(2)); console.log(add56(3));
|
偏函数
yysy,在写这篇文章前,不知道这个这个点。
偏函数就是将一个n参
的函数转换成x参
的函数,剩余n-x
参数将在下次调用全部传入。和柯里化非常像。
1 2 3 4 5
| function partial(fn, ...args1) { return function (...args2) { return fn(...args1, ...args2); } }
|
测试:
1 2 3 4 5 6 7 8 9 10
| function add(a, b, c) { return a + b + c; }
const addPartial = partial(add, 6); console.log(addPartial(7, 8));
console.log(addPartial(7));
addPartial(7)(8);
|
参考
死磕 36 个 JS 手写题(搞懂后,提升真的大) - 掘金
GitHub - qianlongo/fe-handwriting: 手写各种js Promise、apply、call、bind、new、deepClone….
JavaScript 专题之函数柯里化 - 掘金
2021年前端各大公司都考了那些手写题(附带代码) - 掘金