Array.Add添加
• function Add (value : object) : void
Description描述
Adds value to the end of the array.
在数组末尾加入一个值。
var arr = new Array ("Hello");
arr.Add("World");
//打印结果"Hello", "World"
print (arr);
最后修改:2010年11月28日 Sunday 23:55
• function Add (value : object) : void
Description描述
Adds value to the end of the array.
在数组末尾加入一个值。
var arr = new Array ("Hello");
arr.Add("World");
//打印结果"Hello", "World"
print (arr);