函数原型中的 call 和 apply 方法的区别

简介: 它们是在 JavaScript 引擎内在实现的,因为属于Function.prototype,所以每个Function对象实例,也就是每个方法都有call, apply属性。它们的作用一样,只是使用方式不同。

call, apply都属于Function.prototype的方法


它们是在 JavaScript 引擎内在实现的,因为属于Function.prototype,所以每个Function对象实例,也就是每个方法都有call, apply属性。它们的作用一样,只是使用方式不同。


call 与 apply 调用参数不同

不同之处在于调用apply函数时,参数可以使用数组; call要求明确列出参数。

助记法: Apply 的A表示 Array, 即数组, 而 Call 的 C 表示 Comma, 即逗号。

更多请参阅MDN的文档。

伪语法:

theFunction.apply(valueForThis, arrayOfArgs)
theFunction.call(valueForThis, arg1, arg2, ...)

从ES6开始,还有展开spread数组与该call功能一起使用的可能性,你可以在这里看到兼容性。

示例代码:

function theFunction(name, profession) {
    console.log("My name is " + name + " and I am a " + profession +".");
}
theFunction("John", "fireman");
theFunction.apply(undefined, ["Susan", "school teacher"]);
theFunction.call(undefined, "Claude", "mathematician");
theFunction.call(undefined, ...["Matthew", "physicist"]); // 使用展开语法


搞这么复杂,直接调用函数不好吗?

主要是为了模拟面向对象,对状态进行封装的同时, 不同实例可以有不同的内部状态,如:

var module = {
  x: 42,
  getX: function() {
    return this.x;
  }
}
var unboundGetX = module.getX;
console.log(unboundGetX()); // 函数在全局范围内调用,this=window
// 会输出: undefined, 因为window下没有定义x
unboundGetX.call(module) //输出 42, 或使用 bind 也有同样的效果
var module1 ={
   x:123,
   getX: unboundGetX  //this 变为module1
}
module1.getX() //返回123
相关文章
|
6天前
|
JavaScript 前端开发 开发者
call 方法和 apply 方法的区别是什么?
【10月更文挑战第26天】`call` 方法和 `apply` 方法的主要区别在于参数传递方式和使用场景。开发者可以根据具体的函数参数情况和代码的可读性、简洁性要求来选择使用 `call` 方法还是 `apply` 方法,以实现更高效、更易读的JavaScript代码。
15 2
|
5月前
|
JavaScript 前端开发
call和apply的区别
call和apply的区别
|
5月前
|
Python
魔术方法 __call__
【6月更文挑战第28天】
35 0
|
5月前
call()与apply()的作用与区别?
call()与apply()的作用与区别?
|
6月前
call()与apply()的作用与区别
call()与apply()的作用与区别
50 1
|
6月前
|
JavaScript 前端开发
call函数和apply函数的区别
call函数和apply函数的区别
52 0
|
JavaScript 前端开发
call和apply与this的关系
call和apply与this的关系
44 0
|
前端开发
|
JavaScript 算法
js中函数内部属性arguments和this以及方法apply()和call()
js中函数内部属性arguments和this以及方法apply()和call()
下一篇
无影云桌面