skip to main |skip to sidebar

2008年1月16日

[AS3]得到 Array 指定的元素的个数。

/**
* 得到指定的元素的个数。
*
* @param array 数组。
* @param value 元素。
* @return 个数。
* @throws ArgumentError 当 arraynull 时。
*/

public static function count(array:Array, value:*):int {
if(!array) {
throw new ArgumentError("Param: must not be null.");
}
var found:int = 0;
var length:int = array.length;
for(var i:int = 0; i <>

本文链接:https://assnippets.blogspot.com/2008/01/array.html转载请注明出处。

相关文章:

0评论: