详解js arguments,js callee caller
分类:Javascript| 发布:camnprbubuol| 查看:777 | 发表时间:2013/12/1
在写复杂的js函数时,经常会用到js中arguments, jcallee caller,理解这些,对于阅读框架源代码有很大的帮助,比如github上的js框架等。
关键字:arguments,callee,caller
arguments:表示传入函数的参数
callee:表示函数和函数主体的语句
caller:表示调用该函数的函数
arguments
该对象代表正在执行的函数和调用它的函数的参数。
caller
返回一个对函数的引用,该函数调用了当前函数。
functionName.caller
functionName 对象是所执行函数的名称。
说明
对于函数来说,caller属性只有在函数执行时才有定义。如果函数是由顶层调用的,那么 caller包含的就是 null 。如果在字符串上下文中使用 caller 属性,那么结果和functionName.toString一样,也就是说,显示的是函数的反编译文本。
callee
返回正被执行的 Function 对象,也就是所指定的Function 对象的正文。
[function.]arguments.callee
可选项 function 参数是当前正在执行的 Function 对象的名称。
说明
callee 属性的初始值就是正被执行的 Function 对象。
callee 属性是 arguments对象的一个成员,它表示对函数对象本身的引用,这有利于匿名函数的递归或者保证函数的封装性,例如下边示例的递归计算1到n的自然数之和。而该属性仅当相关函数正在执行时才可用。还有需要注意的是callee拥有length属性,这个属性有时候用于验证还是比较好的。arguments.length是实参长度,arguments.callee.length是形参长度,由此可以判断调用时形参长度是否和实参长度一致。
复制代码代码如下:
03 | alert( "实参长度:" +arguments.length); |
04 | alert( "形参长度:" +arguments.callee.length); |
05 | alert( "形参长度:" +test.length); |
07 | alert(test[ 0 ]) // undefined 没有这种用法<p>}</p><p>//test( 1 , 2 , 3 ); |
11 | Array.prototype.selfvalue = 1 ; |
12 | function testAguments() { |
13 | alert( " arguments.selfvalue= " + arguments.selfvalue); |
15 | alert( "Array.sefvalue=" +new Array().selfvalue); |
19 | </p><p>function callerDemo() { |
20 | if (callerDemo.caller) { |
21 | var a = callerDemo.caller.arguments[ 0 ]; |
24 | alert( " this is a top function " ); |
27 | function handleCaller() { |
30 | handleCaller( "参数1" , "参数2" );</p><p> |
35 | function calleeDemo() { |
36 | alert(arguments.callee); |
39 | (function(arg 0 ,arg 1 ){alert( "形数数目为:" +arguments.callee.length)})();</p><p> |
46 | </p><p> function ObjectA() { |
47 | alert( " 执行ObjectA() " ); |
48 | alert(arguments[ 0 ]); |
49 | this .hit = function (msg) {alert(msg)} |
50 | this .info = " 我来自ObjectA " |
54 | alert( " 执行ObjectB() " ); |
55 | // 调用ObjectA()方法,同时ObjectA构造函数中的所有this就会被ObjectB中的this替代 |
56 | ObjectA.apply( this ,arguments); // ObjectA.call(this); |
59 | ObjectB( '参数0' );</p><p> |
60 | var value = " global 变量 " ; |
62 | this .value = " 对象! " ; |
69 | Fun 1 .apply(new Obj());</p> |