Array.RemoveAt移除索引元素

function RemoveAt (index : int) : void

Description描述

Removes the element at index from the array.

从数组中移除位于索引的元素。

var arr = new Array ("Hello", "and good morning", "World");

// 移除第2号元素,"and good morning",,数组是从0开始的,1就是第二号了。
arr.RemoveAt(1);

//打印结果为"Hello,World"
print (arr);
最后修改:2010年11月28日 Sunday 22:58

本脚本参考基于Unity 3.4.1f5

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