AssociativeArray

AssociativeArray

new Cesium.AssociativeArray ()

一组键值对,存储为哈希以方便查找但也提供了一个快速迭代的数组。

Members

获取集合中的项目数。
获取集合中所有值的无序数组。这是一个实时数组,它将自动反映集合中的值,它不应该直接修改。

Methods

contains (key) Boolean

确定提供的密钥是否在数组中。
NameTypeDescription
keyString | Number检查的关键。
Returns:
返回真,如果密钥在数组中,除此之外返回假
检索与提供的键关联的值。
NameTypeDescription
keyString | Number要检索其值的键。
Returns:
关联的值,如果集合中不存在该键,则为undefined。

remove (key) Boolean

从集合中删除键值对。
NameTypeDescription
keyString | Number要删除的密钥。
Returns:
如果删除则为True,如果密钥不在集合中,则为false。
清除收藏。
将提供的密钥与提供的值相关联。如果钥匙已经存在,它被新值覆盖。
NameTypeDescription
keyString | Number唯一标识符。
value*与提供的密钥关联的值。
Documentation generated by JSDoc 3.5.5 翻译:http://cesium.xin

发表评论