Array.Clear清空
function Clear () : void
Description描述
Empties the array. The length of the array will be zero.
清空数组,数组的长度将变为0。
var hello = new Array ("Hello", "World");
hello.Clear();
//hello数组被清空,为0元素
最后修改:2010年11月28日 Sunday 22:44
function Clear () : void
Description描述
Empties the array. The length of the array will be zero.
清空数组,数组的长度将变为0。
var hello = new Array ("Hello", "World");
hello.Clear();
//hello数组被清空,为0元素