collections.Map
一种非线性数据结构。
文档中存在泛型的使用,涉及以下泛型标记符:
- K:Key,键
- V:Value,值
K和V类型都需为Sendable类型。
属性
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
名称 | 类型 | 只读 | 可选 | 说明 |
---|---|---|---|---|
size | number | 是 | 否 | Map的元素个数。 |
constructor
constructor(entries?: readonly (readonly [K, V])[] | null)
构造函数,用于创建ArkTS Map对象。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
entries | [K, V][] | null | 否 | 键值对数组或其它可迭代对象。默认值为null,创建一个空Map对象。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200012 | The ArkTS Map's constructor cannot be directly invoked. |
示例:
// 正例1:
const myMap = new collections.Map<number, number>();// 正例2:
const myMap = new collections.Map<number, string>([
[1, "one"],
[2, "two"],
[3, "three"],
]);// 反例:
@Sendable
class SharedClass {
constructor() {
}
}
let sObj = new SharedClass();
const myMap1: collections.Map<number, SharedClass> = new collections.Map<number, SharedClass>([[1, sObj]]);
// Type arguments of generic "Sendable" type must be a "Sendable" data type (arkts-sendable-generic-types)
let obj = new Object();
const myMap2: collections.Map<number, Object> = new collections.Map<number, Object>([[1, obj]]);
entries
entries(): IterableIterator<[K, V]>
返回一个Map迭代器对象,该对象包含了此Map中的每个元素的[key, value]对。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
返回值:
类型 | 说明 |
---|---|
IterableIterator<[K, V]> | 返回一个Map迭代器对象。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The entries method cannot be bound with non-sendable. |
示例:
// 例1:
const myMap = new collections.Map<number, string>([
[0, "foo"],
[1, "bar"]
]);const iterator = myMap.entries();
// Expected output: [0, "foo"]
console.info(iterator.next().value);
// Expected output: [1, "bar"]
console.info(iterator.next().value);// 例2:
const myMap: collections.Map<number, string> = new collections.Map<number, string>([
[0, "one"],
[1, "two"],
[2, "three"],
[3, "four"]
]);
const entriesIter: IterableIterator<[number, string]> = myMap.entries();
for (const entry of entriesIter) {
if (entry[1].startsWith('t')) {
myMap.delete(entry[0]);
}
}
// Expected output: 2
console.info("size:" + myMap.size);
keys
keys(): IterableIterator<K>
返回一个Map迭代器对象,该对象包含了此Map中每个元素的键。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
返回值:
类型 | 说明 |
---|---|
IterableIterator<K> | 返回一个Map迭代器对象。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The keys method cannot be bound with non-sendable. |
示例:
const myMap = new collections.Map<number, string>([
[0, "foo"],
[1, "bar"]
]);const iterator = myMap.keys();
// Expected output: 0
console.info(iterator.next().value);
// Expected output: 1
console.info(iterator.next().value);
values
values(): IterableIterator<V>
返回一个Map迭代器对象,该对象包含此Map中每个元素的值。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
返回值:
类型 | 说明 |
---|---|
IterableIterator<V> | 返回一个Map迭代器对象。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The values method cannot be bound with non-sendable. |
示例:
const myMap = new collections.Map<number, string>([
[0, "foo"],
[1, "bar"]
]);const iterator = myMap.values();
// Expected output: "foo"
console.info(iterator.next().value);
// Expected output: "bar"
console.info(iterator.next().value);
clear
clear(): void
删除该Map中的所有元素。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
错误码:
以下错误码的详细介绍请参见语言基础类库错误码。
错误码ID | 错误信息 |
---|---|
10200011 | The clear method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
const myMap = new collections.Map<number, string>([
[0, "foo"],
[1, "bar"]
]);
// Expected output: 2
console.info("size:" + myMap.size);
myMap.clear();
// Expected output: 0
console.info("size:" + myMap.size);
delete
delete(key: K): boolean
删除该Map中指定元素。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
key | K | 是 | 待删除元素的键。 |
返回值:
类型 | 说明 |
---|---|
boolean | 如果元素存在并已被删除,则为true;否则该元素不存在,返回false。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The delete method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
const myMap = new collections.Map<string, string>([
["hello", "world"],
]);
// Expected result: true
console.info("result:" + myMap.delete("hello"));
// Expected result: false
console.info("result:" + myMap.has("hello"));
// Expected result: false
console.info("result:" + myMap.delete("hello"));
forEach
forEach(callbackFn: (value: V, key: K, map: Map<K, V>) => void): void
按插入顺序对该Map中的每个键/值对执行一次回调函数。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
callbackFn | (value: V, key: K, map: Map<K, V>) => void | 是 | 回调函数。 |
callbackFn的参数说明:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
value | V | 否 | 当前遍历到的元素键值对的值。 |
key | K | 否 | 当前遍历到的元素键值对的键。 |
map | Map<K, V> | 否 | 当前map实例对象。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The forEach method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
// 正例:
new collections.Map<string, number>([
['foo', 0],
['bar', 1],
['baz', 2],
]).forEach((value, key, map) => {
console.info(`m[${key}] = ${value}`);
});// 反例:
new collections.Map<string, number>([
['foo', 0],
['bar', 1],
['baz', 2],
]).forEach((value, key, map) => {
// Throw exception `Concurrent modification exception.`
map.delete(key);
});
get
get(key: K): V | undefined
返回该Map中的指定元素。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
key | K | 是 | 指定key。 |
返回值:
类型 | 说明 |
---|---|
V | 与指定键相关联的元素,如果键在Map对象中找不到,则返回undefined。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The get method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
const myMap = new collections.Map<string, string>([
["hello", "world"],
]);
// Expected output: "world"
console.info(myMap.get("hello"));
// Expected output: undefined
console.info(myMap.get("world"));
has
has(key: K): boolean
判断该Map中是否存在指定元素。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
返回值:
类型 | 说明 |
---|---|
boolean | 如果存在指定元素,则返回true,否则返回false。 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The has method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
const myMap = new collections.Map<string, string>([
["hello", "world"],
]);
// Expected output: true
console.info("result:" + myMap.has("hello"));
// Expected output: false
console.info("result:" + myMap.has("world"));
set
set(key: K, value: V): Map<K, V>
向该Map添加或更新一个指定的键值对。
元服务API:从API version 12 开始,该接口支持在元服务中使用。
系统能力: SystemCapability.Utils.Lang
返回值:
类型 | 说明 |
---|---|
Map<K, V> | Map对象 |
错误码:
错误码ID | 错误信息 |
---|---|
10200011 | The set method cannot be bound with non-sendable. |
10200201 | Concurrent modification exception. |
示例:
// 正例:
const myMap = new collections.Map<string, string>();
myMap.set("foo", "bar")// 反例:
let obj = new Object();
const myMap: collections.Map<string, Object> = new collections.Map<string, Object>();
// Type arguments of generic "Sendable" type must be a "Sendable" data type (arkts-sendable-generic-types)
myMap.set("foo", obj);