详解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是形参长度,由此可以判断调用时形参长度是否和实参长度一致。

复制代码代码如下:
01function test(x,y,z) 
02
03alert("实参长度:"+arguments.length);
04alert("形参长度:"+arguments.callee.length);
05alert("形参长度:"+test.length);
06alert(arguments[ 0 ])         
07alert(test[ 0 ])           // undefined 没有这种用法<p>}</p><p>//test(1,2,3); 
08test(1,2,3,4);</p><p>/*
09*  arguments不是数组(Array类)
10*/
11Array.prototype.selfvalue  =   1 ;
12function  testAguments() {
13    alert( " arguments.selfvalue= " + arguments.selfvalue);
14}
15alert("Array.sefvalue="+new Array().selfvalue);
16testAguments();</p><p>/**/ /*
17 * 演示函数的caller属性.
18 * 说明:(当前函数).caller:返回一个对函数的引用,该函数调用了当前函数
19  */</p><p>function  callerDemo()  {
20     if  (callerDemo.caller)  {
21         var  a =  callerDemo.caller.arguments[ 0 ];
22        alert(a);
23    }   else   {
24        alert( " this is a top function " );
25    }
26}
27function  handleCaller()  {
28    callerDemo();
29}</p><p> callerDemo();
30 handleCaller("参数1","参数2");</p><p>
31/**/ /*
32 * 演示函数的callee属性.
33 * 说明:arguments.callee:初始值就是正被执行的 Function 对象,用于匿名函数
34  */
35function  calleeDemo()  {
36    alert(arguments.callee);
37}
38 calleeDemo();
39 (function(arg0,arg1){alert("形数数目为:"+arguments.callee.length)})();</p><p>
40/**/ /*
41 * 演示apply,call函数的用法
42 * 说明:作用都是将函数绑定到另外一个对象上去运行,两者仅在定义参数方式有所区别:
43 *       apply(thisArg,argArray);
44 *     call(thisArg[,arg1,arg2…] ]);
45 *     即所有函数内部的this指针都会被赋值为thisArg
46  */</p><p>  function  ObjectA() {
47    alert( " 执行ObjectA() " );
48    alert(arguments[ 0 ]);
49     this .hit = function (msg) {alert(msg)}
50     this .info = " 我来自ObjectA "
51 }
52 
53  function  ObjectB() {
54    alert( " 执行ObjectB() " );
55     // 调用ObjectA()方法,同时ObjectA构造函数中的所有this就会被ObjectB中的this替代
56    ObjectA.apply( this ,arguments); // ObjectA.call(this);
57    alert( this .info);
58 }
59  ObjectB('参数0');</p><p>
60  var  value = " global 变量 " ;
61  function  Obj() {
62     this .value = " 对象! " ;
63 }
64  function  Fun1() {
65    alert( this .value);
66 }
67   Fun1();
68   Fun1.apply(window); 
69   Fun1.apply(new Obj());</p>
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/javascript/js-arguments-callee-caller.html