- 浏览: 1111039 次
文章分类
- 全部博客 (379)
- S2SH (16)
- stuts2 (0)
- java语言 (81)
- JSP (17)
- <html>元素 (11)
- javaweb (4)
- web容器 (3)
- ext (23)
- javaScript (48)
- ant (1)
- liferay (1)
- sql (9)
- css (42)
- 浏览器设置 (3)
- office_world (1)
- eclipse (4)
- 其它 (28)
- 操作系统 (5)
- android (6)
- Struts2 (11)
- RegEx (3)
- mysql (5)
- BigDATA (1)
- Node.js (1)
- Algorithm (10)
- Apache Spark (1)
- 数据库 (5)
- linux (2)
- git (1)
- Adobe (3)
- java语言,WebSocket (1)
- Maven (3)
- SHELL (1)
- XML (2)
- 数学 (2)
- Python (2)
- Java_mysql (1)
- ReactJS (6)
- 养生 (4)
- Docker (1)
- Protocols (3)
- java8 (2)
- 书籍 (1)
- Gradle (2)
- AngularJS (5)
- SpringMVC (2)
- SOAP (1)
- BootstrapCSS (1)
- HTTP协议 (1)
- OAuth2 (1)
最新评论
-
Lixh1986:
Java并发编程:自己动手写一把可重入锁https://blo ...
Java之多线程之Lock与Condition -
Lixh1986:
http://win.51apps.com.cn/https: ...
temp -
ztwsl:
不错,支持很好
HttpServletRequest和ServletRequest的区别 -
guodongkai:
谢谢您能将知识精华汇编总结,让初学者们从原理中学会和提高。
javaScript之function定义 -
kangwen23:
谢谢了,顶顶
struts2中的ValueStack学习
接上文:
javascript之function的this
____________________________________________________________________
一、关于apply 和 call 是什么
Function.prototype.apply():
- The apply() method calls a function with a given this value and arguments provided as an array.
- 指定函数执行时的上下文对象 this,和执行参数,并执行函数。
call() 方法与 apply() 方法相同,不同的只是参数的格式。
二、用例剖析
考虑以下这段代码:
按预想的意图,当点击按钮时,应当会弹出 "Hello!",但上面的代码运行,却弹出 "undefined" 。问题出在哪里呢?在12行设个断点,对它进行调试,发现 this 竟然是指向 btnSubmit,如果是这样的话,那就难怪会弹出 "undefined",因为 btnSubmit 本身并没有定义 message。
事实上,这是与Javascript的语法和运行机制有关的,当 showMessage 真正调用前,this 的指向是不明确,而只有在运行里,this 的指向会由运行时来决定。
那么有没有什么方法来正确实现上述意图呢?答案是肯定的。
首先看下面的代码:
function.call()方法的意义在于,当调用它时,函数使用给定的this作为上下文对象运行。
当调用 foo() 时,this是指向window的(所有的全局变量就是window的属性)。
当调用 foo.call(o) 时,this指向给定的 o 。
理解了function.call的作用,当解决上面的问题就不难了:
四、apply() 与 call() 辩析
What is the difference between using call and apply to invoke a function?[1]
Are there performance differences between the two methods? When is it best to use call over apply and vice versa?
Anwser:
The difference is that:
- apply lets you invoke the function with arguments as an array;
- call requires the parameters be listed explicitly.
A useful mnemonic is "A for array and C for comma."
See MDN's documentation on apply and call.
Pseudo syntax:
Sample code:
五、补充说明:
相同点:
都是指定函数运行时的上下文对象:this, 并执行函数。
不同点:
apply 可以将参数作为数组的形式传递
call 传递参数,必须一个个明确列出来
fun.apply(thisArg[, argsArray])
Calls a function with a given this value and arguments provided as an array (or an array like object).
Description:
You can assign a different this object when calling an existing function. this refers to the current object, the calling object.
apply is very similar to call, except for the type of arguments it supports.[2]
fun.call(thisArg[, arg1[, arg2[, ...]]])
Calls a function with a given this value and arguments provided individually.
Description:
You can assign a different this object when calling an existing function. this refers to the current object, the calling object.[3]
六、参数个数过长的处理
例子(可以直接运行):
说明:
But beware: in using apply this way, you run the risk of exceeding the JavaScript engine's argument length limit. The consequences of applying a function with too many arguments (think more than tens of thousands of arguments) vary across engines (JavaScriptCore has hard-coded argument limit of 65536), because the limit (indeed even the nature of any excessively-large-stack behavior) is unspecified. Some engines will throw an exception. More perniciously, others will arbitrarily limit the number of arguments actually passed to the applied function. (To illustrate this latter case: if such an engine had a limit of four arguments [actual limits are of course significantly higher], it would be as if the arguments 5, 6, 2, 3 had been passed to apply in the examples above, rather than the full array.) If your value array might grow into the tens of thousands, use a hybrid strategy: apply your function to chunks of the array at a time:[4]
七、用法之一: 对匿名函数使用 call() 方法
In this purely constructed example, we create anonymous function and use call to invoke it on every object in an array. The main purpose of the anonymous function here is to add a print function to every object, which is able to print the right index of the object in the array. Passing the object as this value was not strictly necessary, but is done for explanatory purpose.
八、用法之二: Ext中的模板写法
superclass 是一个代指(变量),指向fn继承的父类。fn继承了谁,superclass就是谁。
constrctor 是也是变量,代指superclass的构造方法。
fn.superclass.constructor.apply(this,arguments);
指在创建 superclass 时,使用其构造方法,加入 arguments 作为参数,一起创建。
问题:superclass不是javaScript关键字,又怎么可以直接用呢?它是怎么产生的?
解释:
The Ext.extend method create a "superclass" property that point to the prototype of the Superclass, this allow you to execute or read any method or property in the superclass (that is defined in it's prototype).[5]
引用:
[1].http://stackoverflow.com/questions/1986896/what-is-the-difference-between-call-and-apply
[2].[4].https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/apply
[3].https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call
[5].http://www.sencha.com/forum/showthread.php?128276-Extend-how-to-call-parent-s-superclass
—————————————
javascript 函数基础系列文章
1、JavaScript之变量的作用域
2、javascript之变量类型与变量声明及函数变量的运行机制
3、javaScript之function定义
4、javascript之function的prototype对象
5、javascript之function的(closure)闭包特性
6、javascript之function的this
7、javascript之function的apply(), call()
___________
javascript 面向对象编程系列文章:
1、javaScript之面向对象编程
2、javascript之面向对象编程之属性继承
3、javascript之面向对象编程之原型继承
-
-
转载请注明
原文出处: http://lixh1986.iteye.com/blog/1943409
-
2016-07-12
-
javascript之function的this
____________________________________________________________________
一、关于apply 和 call 是什么
Function.prototype.apply():
- The apply() method calls a function with a given this value and arguments provided as an array.
- 指定函数执行时的上下文对象 this,和执行参数,并执行函数。
call() 方法与 apply() 方法相同,不同的只是参数的格式。
二、用例剖析
考虑以下这段代码:
<input type="button" id="btnSubmit" value="Click me!" /> <script language="javascript" type="text/javascript"> function ButtonMessager(buttonId, msg){ this.message = msg; //在面向对象编程的函数体内,可以有面向过程的语句。 document.getElementById(buttonId).onclick = this.showMessage; } ButtonMessager.prototype.showMessage=function(){ alert(this.message); } var btnMessager = new ButtonMessager("btnSubmit", "Hello!"); </script>
按预想的意图,当点击按钮时,应当会弹出 "Hello!",但上面的代码运行,却弹出 "undefined" 。问题出在哪里呢?在12行设个断点,对它进行调试,发现 this 竟然是指向 btnSubmit,如果是这样的话,那就难怪会弹出 "undefined",因为 btnSubmit 本身并没有定义 message。
事实上,这是与Javascript的语法和运行机制有关的,当 showMessage 真正调用前,this 的指向是不明确,而只有在运行里,this 的指向会由运行时来决定。
那么有没有什么方法来正确实现上述意图呢?答案是肯定的。
首先看下面的代码:
var x=10; var o ={ x: 15 }; function foo(){ alert(this.x); } foo(); // 10 foo.call(o); // 15
function.call()方法的意义在于,当调用它时,函数使用给定的this作为上下文对象运行。
当调用 foo() 时,this是指向window的(所有的全局变量就是window的属性)。
当调用 foo.call(o) 时,this指向给定的 o 。
理解了function.call的作用,当解决上面的问题就不难了:
<input type="button" id="btnSubmit" value="Click me!" /> <script language="javascript" type="text/javascript"> function ButtonMessager(buttonId, msg){ this.message = msg; // 当 click 事件触发时,this 不再指向 btnSubmit // 而是指定的 ButtonMessager 生成的 对象:btn document.getElementById(buttonId).onclick = createDelegate(this,this.showMessage); } ButtonMessager.prototype.showMessage=function(){ alert(this.message); } function createDelegate(object, method){ return function(){ method.apply(object); } } var btn = new ButtonMessager("btnSubmit", "Hello!"); </script> </script>
四、apply() 与 call() 辩析
What is the difference between using call and apply to invoke a function?[1]
var func = function(){ alert('hello!'); }; func.apply(); //vs func.call();
Are there performance differences between the two methods? When is it best to use call over apply and vice versa?
Anwser:
The difference is that:
- apply lets you invoke the function with arguments as an array;
- call requires the parameters be listed explicitly.
A useful mnemonic is "A for array and C for comma."
See MDN's documentation on apply and call.
Pseudo syntax:
// theFunction.apply(valOfThis, arrayOfArgs) // // theFunction.call(valOfThis, arg1, arg2, ...) //
Sample code:
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"); // My name is John and I am a fireman. // My name is Susan and I am a school teacher. // My name is Claude and I am a mathematician.
五、补充说明:
相同点:
都是指定函数运行时的上下文对象:this, 并执行函数。
不同点:
apply 可以将参数作为数组的形式传递
call 传递参数,必须一个个明确列出来
fun.apply(thisArg[, argsArray])
Calls a function with a given this value and arguments provided as an array (or an array like object).
Description:
You can assign a different this object when calling an existing function. this refers to the current object, the calling object.
apply is very similar to call, except for the type of arguments it supports.[2]
fun.call(thisArg[, arg1[, arg2[, ...]]])
Calls a function with a given this value and arguments provided individually.
Description:
You can assign a different this object when calling an existing function. this refers to the current object, the calling object.[3]
六、参数个数过长的处理
例子(可以直接运行):
function minOfArray(arr) { var min = Infinity; var QUANTUM = 32768; for (var i = 0, len = arr.length; i < len; i += QUANTUM) { var submin = Math.min.apply(null, arr.slice(i, Math.min(i + QUANTUM, len))); min = Math.min(submin, min); } return min; } var min = minOfArray([5, 6, 2, 3, 7]); alert(min);
说明:
But beware: in using apply this way, you run the risk of exceeding the JavaScript engine's argument length limit. The consequences of applying a function with too many arguments (think more than tens of thousands of arguments) vary across engines (JavaScriptCore has hard-coded argument limit of 65536), because the limit (indeed even the nature of any excessively-large-stack behavior) is unspecified. Some engines will throw an exception. More perniciously, others will arbitrarily limit the number of arguments actually passed to the applied function. (To illustrate this latter case: if such an engine had a limit of four arguments [actual limits are of course significantly higher], it would be as if the arguments 5, 6, 2, 3 had been passed to apply in the examples above, rather than the full array.) If your value array might grow into the tens of thousands, use a hybrid strategy: apply your function to chunks of the array at a time:[4]
七、用法之一: 对匿名函数使用 call() 方法
var animals = [ {species: 'Lion', name: 'King'}, {species: 'Whale', name: 'Fail'} ]; for (var i = 0; i < animals.length; i++) { (function (i) { this.print = function () { //add print method for arguments. console.log('#' + i + ' ' + this.species + ': ' + this.name); } this.print(); }).call(animals[i], i); }
In this purely constructed example, we create anonymous function and use call to invoke it on every object in an array. The main purpose of the anonymous function here is to add a print function to every object, which is able to print the right index of the object in the array. Passing the object as this value was not strictly necessary, but is done for explanatory purpose.
八、用法之二: Ext中的模板写法
var fn = function(){ fn.superclass.constructor.apply(this,arguments); } Ext.extend(fn, Ext.util.Observable,{ });
superclass 是一个代指(变量),指向fn继承的父类。fn继承了谁,superclass就是谁。
constrctor 是也是变量,代指superclass的构造方法。
fn.superclass.constructor.apply(this,arguments);
指在创建 superclass 时,使用其构造方法,加入 arguments 作为参数,一起创建。
问题:superclass不是javaScript关键字,又怎么可以直接用呢?它是怎么产生的?
解释:
The Ext.extend method create a "superclass" property that point to the prototype of the Superclass, this allow you to execute or read any method or property in the superclass (that is defined in it's prototype).[5]
引用:
[1].http://stackoverflow.com/questions/1986896/what-is-the-difference-between-call-and-apply
[2].[4].https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/apply
[3].https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call
[5].http://www.sencha.com/forum/showthread.php?128276-Extend-how-to-call-parent-s-superclass
—————————————
javascript 函数基础系列文章
1、JavaScript之变量的作用域
2、javascript之变量类型与变量声明及函数变量的运行机制
3、javaScript之function定义
4、javascript之function的prototype对象
5、javascript之function的(closure)闭包特性
6、javascript之function的this
7、javascript之function的apply(), call()
___________
javascript 面向对象编程系列文章:
1、javaScript之面向对象编程
2、javascript之面向对象编程之属性继承
3、javascript之面向对象编程之原型继承
-
-
转载请注明
原文出处: http://lixh1986.iteye.com/blog/1943409
-
2016-07-12
-
发表评论
-
Javascript 测试框架之 隐式声明 之 describe
2019-06-25 15:26 2578为什么使用 javascript 测试框架时,没有显式导入 d ... -
JavaScript之ECMAScript6新特性之_03_箭头函数(Arrow Function)
2018-01-25 13:46 1116一、简介 箭头函数(Arrow Function)是 ES6 ... -
JavaScript之ECMAScript6新特性之_02_线程异步阻塞: Promise, Async / await
2018-01-12 16:51 2322刚出来不久的 ES8 包含了 async 函数,它的出现,终于 ... -
JavaScript之ECMAScript6新特性之_01_开篇
2017-08-17 02:54 602点此查看全部: http://es6-features.org ... -
jQuery Versions - browser support
2017-08-12 04:19 1610jQuery 3.2.1 Support Deskto ... -
基于HTML5实现的中国象棋游戏
2017-06-24 02:24 1681HTML5实现中国象棋游戏 http://www.w2bc.c ... -
JavaScript之跨域请求解决方案
2017-06-07 11:03 3967浏览器处于安全原因,在使用 Ajax 进行请求访问时,不允许跨 ... -
JavaScript之 25 道面试题
2017-04-17 17:05 95025 Essential JavaScript Intervi ... -
JavaScript小应用之分页算法
2017-03-16 12:56 663效果图: function getPagina ... -
jQuery之empty() VS. remove()
2017-03-16 10:32 719jQuery empty() vs remove() Wh ... -
jQuery之 prop() VS. attr()
2017-03-14 16:43 656attr() 用于自定义属性,id ; prop() 用于 ... -
jQuery之mouseover,mouseover,mouseout,mouseleave
2017-03-14 10:20 653Jquery mouseenter() vs mouseove ... -
javascript之JS操作iframe
2017-02-28 14:56 2191JS操作iframe 1. 获得iframe的w ... -
javascript之面向对象编程之原型继承
2017-01-02 15:34 1116前文讲到“属性继承” ... -
HTML5之Cookie,localStorage 与 sessionStorage
2016-12-22 18:35 842详说 Cookie, LocalStorage 与 ... -
jquery之live(), delegate(), on() 方法
2016-11-26 23:48 925通过下面的一个实例理解 jQuery 的 live(), de ... -
javascript之小应用:网页在线聊天
2016-11-08 11:48 4293概览 这款使用 PHP 和 javascript 搭建的 ... -
javascript之编程序题目
2016-11-06 17:30 10501. 判断两个字符串是否:字母相同切长度相同(空格不算)。 ... -
javascript之面向对象编程之属性继承
2016-10-23 21:09 885函数继承可以分为两种:1、继承其 this 属性 2、继承其 ... -
javascript 之 undefined
2016-08-12 11:01 703一、用法 undefined 关键字有两种用法: 1. 如 ...
相关推荐
主要介绍了JavaScript中函数(Function)的apply与call理解,本文讲解了JavaScript函数调用分为4中模式以及通过apply和call实现扩展和继承两方面,需要的朋友可以参考下
为了控制函数的this指向,JavaScript提供了apply、call以及bind方法。以下详细解释了apply、call以及bind的用法,并通过实例加深理解。 1. apply()和call()方法 apply()和call()方法都用于指定函数体内this的值。...
在JavaScript中,`apply`和`call`是两种非常重要的函数调用方式,它们都用于改变函数内部`this`的指向以及动态传递参数。这两者的主要区别在于参数的传递方式。 首先,`this`在JavaScript中是一个关键字,它在不同...
在JavaScript中,`call`和`apply`是两个非常重要的方法,它们都用于改变函数调用时的上下文(即`this`的值),并且可以灵活地传递参数。本篇文章将深入探讨这两个方法的用法、区别以及实际应用场景。 `call`方法...
`call`和`apply`是`Function.prototype`上的两个方法,它们允许开发者以不同的上下文(`this`值)调用函数,并提供参数。这两个方法的主要区别在于参数的传递方式: 1. **`call`方法**:接收一个`this`值作为第一个...
1、call,apply都属于Function.prototype的一个方法,它是JavaScript引擎内在实现的,因为属于Function.prototype,所以每个Function对象实例(就是每个方法)都有call,apply属性。既然作为方法的属性,那它们的使用...
### JavaScript中apply、call和bind的用法区分 在JavaScript编程中,`apply`、`call`和`bind`这三个方法被广泛用于改变函数内部`this`的指向,这对于理解和编写复杂的JavaScript代码至关重要。虽然它们的功能相似,...
JavaScript中的this、new、apply和call是理解JavaScript面向对象编程的关键知识点。首先,我们要知道,this关键字在JavaScript中表示当前上下文的对象,但它并不像Java中的this那样始终指向同一个对象。JavaScript的...
JavaScript 中的 call、apply、bind 方法是 Function 对象自带的三个方法,这三个方法的主要作用是转变函数中的 this 指向,从而可以达到“接花移木”的效果。下面将对这三个方法进行具体的讲解,并列出几个经典应用...
本文将详细解释JavaScript中call(), apply(), 和 bind() 方法的作用、语法以及使用场景,并且会探讨回调函数的使用,帮助理解这些概念在实际编程中的应用。 首先,我们来探讨call() 和 apply() 方法。这两个方法都...
这篇文章将深入探讨四个关键概念:caller、callee、call和apply,它们都是JavaScript函数操作的核心部分,对于理解和使用高级JavaScript编程至关重要。 首先,我们来了解`caller`和`callee`。在JavaScript的函数...
总结起来,`call()` 和 `apply()` 都用于立即调用函数并改变 `this` 的值,不同之处在于传递额外参数的方式:`call()` 是按位置传递,`apply()` 是通过数组传递。而 `bind()` 不仅可以改变 `this` 的值,还可以返回...
在JavaScript中,`apply`与`call`是两个非常重要的函数,它们都属于`Function.prototype`的一部分,因此每一个函数对象都拥有这两个方法。这两个方法的主要作用在于改变函数执行时的上下文环境(`this`值),这对于...
在JavaScript中,`call`和`apply`是两种非常重要的函数调用方式,它们都用于改变函数内部`this`的指向,实现函数的动态绑定。这两个方法都是Function对象的原型方法,可以应用到任何函数上。 首先,让我们深入理解`...
在JavaScript中,`call` 和 `apply` 是两种非常重要的函数调用方式,它们都用于改变函数执行时的上下文,即`this`的指向。本文将深入探讨这两种方法的用法及其在实际编程中的应用。 ### 1. `call` 的基本用法 `...
在JavaScript中,`apply()`和`call()`方法都是用于改变函数调用时的上下文(即`this`关键字指向的对象)以及传递参数。这两个方法都隶属于`Function.prototype`,因此所有函数实例都拥有这两个方法。它们的主要作用...
apply和call,它们的作用都是将函数绑定到另外一个对象上去运行,两者仅在定义参数的方式有所区别: Function.prototype.apply(thisArg,argArray); Function.prototype.call(thisArg[,arg1[,arg2…]]); 从函数原型...
总结来说,apply()、call()和bind()在JavaScript中都是非常重要的方法,它们可以控制函数内部的this指向,允许参数的灵活传递,并且可以创建可重用的函数,从而提升代码的模块性和灵活性。通过理解这些方法的使用...
JavaScript中的`call`和`apply`是两种非常重要的函数调用方式,它们允许开发者改变函数执行的上下文,即函数内部的`this`值。这两个方法的主要区别在于传递参数的方式。 `call`方法的语法是`call(obj, arg1, arg2, ...
Function.apply and Function.call in JavaScript 第一段略。 每个JavaScript函数都会有很多附属的(attached)方法,包括toString()、call()以及apply()。听起来,你是否会感到奇怪,一个函数可能会有属于它自己的...