ActionScript 3 as3中没有固定长度的数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 as3中没有固定长度的数组相关的知识,希望对你有一定的参考价值。

var COUNT:int = 10;

var a:Array = new Array( COUNT ); //Vector.<Number> = Vector.<Number>( new Array( COUNT ));
//a.fixed = true;

var writeTo:Object;

var i:int;

while ( i < COUNT )
{
	writeTo = a[ i ]; //testing that we indeed have access to the index
	a[ i ] = Math.random();
	writeTo = a[ i++ ];
}

while ( i >= 0 )
{
	a.pop(); //if a is a Vector, this will throw a run-time error
	i--;
}

以上是关于ActionScript 3 as3中没有固定长度的数组的主要内容,如果未能解决你的问题,请参考以下文章

as3中没有固定长度的数组

ActionScript 3 AS3:提取没有扩展名的文件名

获取 ActionScript 3 字典的大小

ActionScript 3 AS3启动没有工具栏等的新浏览器窗口

ActionScript 3 AS3在阵列中?

ActionScript 3 AS3:在数组中搜索