Unshift.Push挤入

function Push (value : object) : int

Description描述

Adds value to the end of the array.

And returns the new length of the array.

在数组末尾添加值,并返回新的数组长度。

var arr = new Array ("Hello");
arr.Push("World");
//在数组末尾添加一个元素
// 打印结果为"Hello", "World"
print(arr);
最后修改:2010年11月28日 Sunday 23:00

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。