从as2中的本地函数弹出数组

时间:2012-10-28 09:51:13

标签: arrays function actionscript actionscript-2

为什么这个pop方法会返回:[type Function]

var possibles:Array=new Array(1,2,3,4);
function testpop()
{
  trace( possibles.pop );
}
testpop();

此代码以动作脚本2

编写

1 个答案:

答案 0 :(得分:1)

因为它是一个记住调用它的函数:

var possibles:Array=new Array(1,2,3,4);
function testpop()
{
  trace( possibles.pop() );
}
testpop();