为什么这个pop方法会返回:[type Function]
var possibles:Array=new Array(1,2,3,4);
function testpop()
{
trace( possibles.pop );
}
testpop();
此代码以动作脚本2
编写答案 0 :(得分:1)
因为它是一个记住调用它的函数:
var possibles:Array=new Array(1,2,3,4);
function testpop()
{
trace( possibles.pop() );
}
testpop();