array
类型
索引
方法
removeAt
Removes the array item at the specified index.fastRemoveAt
Removes the array item at the specified index....remove
Removes the first occurrence of a specific object from the array.fastRemove
Removes the first occurrence of a specific object from the array....verifyType
Verify array's TyperemoveArray
Removes from array all values in minusArr. For each Value in minusArr, the first matching instance in array will be removed.appendObjectsAt
Inserts some objects at indexindexOf
Exact same function as Array.prototype.indexOf.
...contains
Determines whether the array contains a specific value.copy
Copy an array's item to a new array (its performance is better than Array.slice)
Details
方法
removeAt
Removes the array item at the specified index.
meta | description |
---|---|
定义于 | cocos2d/core/platform/js.js:657 |
参数列表
array
Anyindex
Number
fastRemoveAt
Removes the array item at the specified index. It's faster but the order of the array will be changed.
meta | description |
---|---|
定义于 | cocos2d/core/platform/js.js:667 |
参数列表
array
Anyindex
Number
remove
Removes the first occurrence of a specific object from the array.
meta | description |
---|---|
返回 | Boolean |
定义于 | cocos2d/core/platform/js.js:683 |
参数列表
array
Anyvalue
Any
fastRemove
Removes the first occurrence of a specific object from the array. It's faster but the order of the array will be changed.
meta | description |
---|---|
定义于 | cocos2d/core/platform/js.js:701 |
参数列表
array
Anyvalue
Number
verifyType
Verify array's Type
meta | description |
---|---|
返回 | Boolean |
定义于 | cocos2d/core/platform/js.js:716 |
参数列表
removeArray
Removes from array all values in minusArr. For each Value in minusArr, the first matching instance in array will be removed.
meta | description |
---|---|
定义于 | cocos2d/core/platform/js.js:735 |
参数列表
appendObjectsAt
Inserts some objects at index
meta | description |
---|---|
返回 | Array |
定义于 | cocos2d/core/platform/js.js:747 |
参数列表
indexOf
Exact same function as Array.prototype.indexOf.
HACK: ugliy hack for Baidu mobile browser compatibility, stupid Baidu guys modify Array.prototype.indexOf for all pages loaded, their version changes strict comparison to non-strict comparison, it also ignores the second parameter of the original API, and this will cause event handler enter infinite loop.
Baidu developers, if you ever see this documentation, here is the standard: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf, Seriously!
meta | description |
---|---|
返回 | Number |
定义于 | cocos2d/core/platform/js.js:760 |
参数列表
searchElement
Any Element to locate in the array.fromIndex
Number The index to start the search at
contains
Determines whether the array contains a specific value.
meta | description |
---|---|
返回 | Boolean |
定义于 | cocos2d/core/platform/js.js:772 |
参数列表
array
Anyvalue
Any
copy
Copy an array's item to a new array (its performance is better than Array.slice)
meta | description |
---|---|
返回 | Array |
定义于 | cocos2d/core/platform/js.js:783 |
参数列表
array
Array