js-apis-hashmap.md 16.3 KB
Newer Older
L
linhaoran 已提交
1 2 3 4 5
# 非线性容器HashMap 

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

6 7 8 9 10 11 12
HashMap底层使用数组+链表+红黑树的方式实现,查询、插入和删除的效率都很高。HashMap存储内容基于key-value的键值对映射,不能有重复的key,且一个key只能对应一个value。

HashMap和[TreeMap](js-apis-treemap.md)相比,HashMap依据键的hashCode存取数据,访问速度较快。而TreeMap是有序存取,效率较低。

[HashSet](js-apis-hashset.md)基于HashMap实现。HashMap的输入参数由key、value两个值组成。在HashSet中,只对value对象进行处理。

**推荐使用场景:** 需要快速存取、删除以及插入键值对数据时,推荐使用HashMap。
L
linhaoran 已提交
13

L
lengchangjing 已提交
14 15 16 17
文档中存在泛型的使用,涉及以下泛型标记符:<br>
- K: Key, 键<br>
- V: Value, 值

L
linhaoran 已提交
18 19
## 导入模块

20
```ts
21
import HashMap from '@ohos.util.HashMap'; 
L
linhaoran 已提交
22 23 24 25 26 27
```

## HashMap

### 属性

Z
zengyawen 已提交
28 29
**系统能力:** SystemCapability.Utils.Lang

L
linhaoran 已提交
30 31
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
Z
zengyawen 已提交
32
| length | number | 是 | 否 | HashMap的元素个数。 |
L
linhaoran 已提交
33 34 35 36


### constructor

Z
zengyawen 已提交
37
constructor()
L
linhaoran 已提交
38 39 40

HashMap的构造函数。

Z
zengyawen 已提交
41 42
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
43 44 45 46 47 48 49 50
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200012 | The HashMap's constructor cannot be directly invoked. |

Z
zengyawen 已提交
51 52
**示例:**

53
```ts
Z
zengyawen 已提交
54
let hashMap = new HashMap();
L
liu-ganlin 已提交
55 56 57 58 59
try {
  let hashMap2 = HashMap();
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
60
```
L
linhaoran 已提交
61 62 63 64


### isEmpty

Z
zengyawen 已提交
65
isEmpty(): boolean
L
linhaoran 已提交
66 67 68

判断该HashMap是否为空。

Z
zengyawen 已提交
69 70
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
71
**返回值:**
L
linhaoran 已提交
72

Z
zengyawen 已提交
73 74 75 76
| 类型 | 说明 |
| -------- | -------- |
| boolean | 为空返回true,不为空返回false。 |

L
liu-ganlin 已提交
77 78 79 80 81 82 83 84
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The isEmpty method cannot be bound. |

Z
zengyawen 已提交
85 86
**示例:**

87
```ts
Z
zengyawen 已提交
88
const hashMap = new HashMap();
89
let result = hashMap.isEmpty();
L
liu-ganlin 已提交
90
try {
L
liu-ganlin 已提交
91
  hashMap.isEmpty.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
92 93 94
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
95
```
L
linhaoran 已提交
96 97 98 99


### hasKey

Z
zengyawen 已提交
100
hasKey(key: K): boolean
L
linhaoran 已提交
101 102 103

判断此HashMap中是否含有该指定key。

Z
zengyawen 已提交
104 105
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
106 107 108 109 110
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 指定Key。 |
L
linhaoran 已提交
111

Z
zengyawen 已提交
112
**返回值:**
L
linhaoran 已提交
113

Z
zengyawen 已提交
114 115 116 117
| 类型 | 说明 |
| -------- | -------- |
| boolean | 包含指定Key返回true,否则返回false。 |

L
liu-ganlin 已提交
118 119 120 121 122 123 124 125
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The hasKey method cannot be bound. |

Z
zengyawen 已提交
126 127
**示例:**

128
```ts
Z
zengyawen 已提交
129
let hashMap = new HashMap();
L
lengchangjing 已提交
130 131 132
let result = hashMap.hasKey("squirrel");
hashMap.set("squirrel", 123);
let result1 = hashMap.hasKey("squirrel");
L
liu-ganlin 已提交
133
try {
L
liu-ganlin 已提交
134
  hashMap.hasKey.bind({}, "squirrel")(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
135 136 137
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
138
```
L
linhaoran 已提交
139 140 141 142


### hasValue

Z
zengyawen 已提交
143
hasValue(value: V): boolean
L
linhaoran 已提交
144 145 146

判断此HashMap中是否含有该指定value。

Z
zengyawen 已提交
147 148
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
149 150 151 152 153
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | V | 是 | 指定value。 |
L
linhaoran 已提交
154

Z
zengyawen 已提交
155
**返回值:**
L
linhaoran 已提交
156

Z
zengyawen 已提交
157 158 159 160
| 类型 | 说明 |
| -------- | -------- |
| boolean | 包含指定value返回true,否则返回false。 |

L
liu-ganlin 已提交
161 162 163 164 165 166 167 168
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The hasValue method cannot be bound. |

Z
zengyawen 已提交
169 170
**示例:**

171
```ts
Z
zengyawen 已提交
172
let hashMap = new HashMap();
173
let result = hashMap.hasValue(123);
L
lengchangjing 已提交
174
hashMap.set("squirrel", 123);
175
let result1 = hashMap.hasValue(123);
L
liu-ganlin 已提交
176
try {
L
liu-ganlin 已提交
177
  hashMap.hasValue.bind({}, 123)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
178 179 180
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
181
```
L
linhaoran 已提交
182 183 184 185


### get

Z
zengyawen 已提交
186
get(key: K): V
L
linhaoran 已提交
187 188 189

获取指定key所对应的value。

Z
zengyawen 已提交
190 191
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
192
**参数:**
L
linhaoran 已提交
193

Z
zengyawen 已提交
194 195 196
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 查找的指定key。 |
L
linhaoran 已提交
197

Z
zengyawen 已提交
198 199 200 201 202 203
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| V | 返回key映射的value值。 |

L
liu-ganlin 已提交
204 205 206 207 208 209 210 211
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The get method cannot be bound. |

Z
zengyawen 已提交
212 213
**示例:**

214
```ts
Z
zengyawen 已提交
215
let hashMap = new HashMap();
L
lengchangjing 已提交
216 217 218
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
let result = hashMap.get("sparrow");
L
liu-ganlin 已提交
219
try {
L
liu-ganlin 已提交
220
  hashMap.get.bind({}, "sparrow")(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
221 222 223
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
224
```
L
linhaoran 已提交
225 226 227 228


### setAll

Z
zengyawen 已提交
229
setAll(map: HashMap<K, V>): void
L
linhaoran 已提交
230

231
将一个HashMap中的所有元素组添加到另一个hashMap中。
L
linhaoran 已提交
232

Z
zengyawen 已提交
233 234
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
235
**参数:**
L
linhaoran 已提交
236

Z
zengyawen 已提交
237 238
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
239
| map | HashMap<K, V> | 是 | 被添加元素的hashMap。 |
Z
zengyawen 已提交
240

L
liu-ganlin 已提交
241 242 243 244 245 246 247 248
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The setAll method cannot be bound. |

Z
zengyawen 已提交
249 250
**示例:**

251
```ts
Z
zengyawen 已提交
252
let hashMap = new HashMap();
L
lengchangjing 已提交
253 254
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
255 256
let newHashMap = new HashMap();
hashMap.setAll(newHashMap);
L
liu-ganlin 已提交
257
try {
L
liu-ganlin 已提交
258
  hashMap.setAll.bind({}, newHashMap)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
259 260 261
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
262
```
L
linhaoran 已提交
263 264 265 266


### set

Z
zengyawen 已提交
267
set(key: K, value: V): Object
L
linhaoran 已提交
268 269 270

向HashMap中添加一组数据。

Z
zengyawen 已提交
271 272
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
273
**参数:**
L
linhaoran 已提交
274

Z
zengyawen 已提交
275 276 277 278
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 添加成员数据的键名。 |
| value | V | 是 | 添加成员数据的值。 |
L
linhaoran 已提交
279

Z
zengyawen 已提交
280 281 282 283
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
284
| Object | 返回添加后的hashMap。 |
Z
zengyawen 已提交
285

L
liu-ganlin 已提交
286 287 288 289 290 291 292 293
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The set method cannot be bound. |

Z
zengyawen 已提交
294 295
**示例:**

296
```ts
Z
zengyawen 已提交
297
let hashMap = new HashMap();
L
lengchangjing 已提交
298
let result = hashMap.set("squirrel", 123);
L
liu-ganlin 已提交
299
try {
L
liu-ganlin 已提交
300
  hashMap.set.bind({}, "squirrel", 123)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
301 302 303
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
304
```
L
linhaoran 已提交
305 306 307 308


### remove

Z
zengyawen 已提交
309
remove(key: K): V
L
linhaoran 已提交
310

311
删除指定key所对应元素。
L
linhaoran 已提交
312

Z
zengyawen 已提交
313 314
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
315 316 317 318
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
319
| key | K | 是 | 指定key。 |
L
linhaoran 已提交
320

Z
zengyawen 已提交
321
**返回值:**
L
linhaoran 已提交
322

Z
zengyawen 已提交
323 324 325 326
| 类型 | 说明 |
| -------- | -------- |
| V | 返回删除元素的值。 |

L
liu-ganlin 已提交
327 328 329 330 331 332 333 334
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The remove method cannot be bound. |

Z
zengyawen 已提交
335 336
**示例:**

337
```ts
Z
zengyawen 已提交
338
let hashMap = new HashMap();
L
lengchangjing 已提交
339 340 341
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
let result = hashMap.remove("sparrow");
L
liu-ganlin 已提交
342
try {
L
liu-ganlin 已提交
343
  hashMap.remove.bind({}, "sparrow")(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
344 345 346
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
347
```
L
linhaoran 已提交
348 349 350 351


### clear

Z
zengyawen 已提交
352
clear(): void
L
linhaoran 已提交
353 354 355

清除HashMap中的所有元素,并把length置为0。

Z
zengyawen 已提交
356 357
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
358 359 360 361 362 363 364 365
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The clear method cannot be bound. |

Z
zengyawen 已提交
366 367
**示例:**

368
```ts
Z
zengyawen 已提交
369
let hashMap = new HashMap();
L
lengchangjing 已提交
370 371
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
372
hashMap.clear();
L
liu-ganlin 已提交
373
try {
L
liu-ganlin 已提交
374
  hashMap.clear.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
375 376 377
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
378
```
L
linhaoran 已提交
379 380 381 382


### keys

Z
zengyawen 已提交
383
keys(): IterableIterator&lt;K&gt;
L
linhaoran 已提交
384

385
返回包含此映射中包含的键名的新迭代器对象。
L
linhaoran 已提交
386

Z
zengyawen 已提交
387 388
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
389 390 391 392 393 394
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator&lt;K&gt; | 返回一个迭代器。 |

L
liu-ganlin 已提交
395 396 397 398 399 400 401 402
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The keys method cannot be bound. |

Z
zengyawen 已提交
403 404
**示例:**

405
```ts
Z
zengyawen 已提交
406
let hashMap = new HashMap();
L
lengchangjing 已提交
407 408
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
409 410 411
let iter = hashMap.keys();
let temp = iter.next().value;
while(temp != undefined) {
412
  console.log("value:" + temp);
Z
zengyawen 已提交
413 414
  temp = iter.next().value;
}
L
liu-ganlin 已提交
415
try {
L
liu-ganlin 已提交
416
  hashMap.keys.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
417 418 419
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
420
```
L
linhaoran 已提交
421 422 423 424


### values

Z
zengyawen 已提交
425
values(): IterableIterator&lt;V&gt;
L
linhaoran 已提交
426

W
wusongqing 已提交
427
返回包含此映射中包含的键值的新迭代器对象。
L
linhaoran 已提交
428

Z
zengyawen 已提交
429 430
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
431 432 433 434 435 436
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator&lt;V&gt; | 返回一个迭代器。 |

L
liu-ganlin 已提交
437 438 439 440 441 442 443 444
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The values method cannot be bound. |

Z
zengyawen 已提交
445 446
**示例:**

447
```ts
Z
zengyawen 已提交
448
let hashMap = new HashMap();
L
lengchangjing 已提交
449 450
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
451 452 453
let iter = hashMap.values();
let temp = iter.next().value;
while(temp != undefined) {
454
  console.log("value:" + temp);
Z
zengyawen 已提交
455 456
  temp = iter.next().value;
}
L
liu-ganlin 已提交
457
try {
L
liu-ganlin 已提交
458
  hashMap.values.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
459 460 461
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
462
```
L
linhaoran 已提交
463 464 465 466


### replace

467
replace(key: K, newValue: V): boolean
L
linhaoran 已提交
468 469 470

对HashMap中一组数据进行更新(替换)。

Z
zengyawen 已提交
471 472
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
473 474 475 476 477
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 依据key指定替换的元素。 |
478
| newValue | V | 是 | 替换成员数据的值。 |
Z
zengyawen 已提交
479 480

**返回值:**
L
linhaoran 已提交
481

Z
zengyawen 已提交
482 483 484
| 类型 | 说明 |
| -------- | -------- |
| boolean | 是否成功对已有数据进行替换 |
L
linhaoran 已提交
485

L
liu-ganlin 已提交
486 487 488 489 490 491 492 493
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The replace method cannot be bound. |

Z
zengyawen 已提交
494 495
**示例:**

496
```ts
Z
zengyawen 已提交
497
let hashMap = new HashMap();
L
lengchangjing 已提交
498 499
hashMap.set("sparrow", 123);
let result = hashMap.replace("sparrow", 357);
L
liu-ganlin 已提交
500
try {
L
liu-ganlin 已提交
501
  hashMap.replace.bind({}, "sparrow", 357)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
502 503 504
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
505
```
L
linhaoran 已提交
506 507 508 509


### forEach

510
forEach(callbackfn: (value?: V, key?: K, map?: HashMap<K, V>) => void, thisArg?: Object): void
L
linhaoran 已提交
511 512 513

通过回调函数来遍历HashMap实例对象上的元素以及元素对应的下标。

Z
zengyawen 已提交
514 515
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
516 517 518 519 520 521 522 523 524 525
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackfn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |

callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
526 527
| value | V | 否 | 当前遍历到的元素键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键。 |
528
| map | HashMap<K, V> | 否 | 当前调用forEach方法的实例对象。 |
Z
zengyawen 已提交
529

L
liu-ganlin 已提交
530 531 532 533 534 535 536 537
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The forEach method cannot be bound. |

Z
zengyawen 已提交
538 539
**示例:**

540
```ts
Z
zengyawen 已提交
541
let hashMap = new HashMap();
L
lengchangjing 已提交
542 543
hashMap.set("sparrow", 123);
hashMap.set("gull", 357);
Z
zengyawen 已提交
544
hashMap.forEach((value, key) => {
545
  console.log("value:" + value, key);
Z
zengyawen 已提交
546
});
L
liu-ganlin 已提交
547 548 549
try {
  hashMap.forEach.bind({}, (value, key) => {
    console.log("value:" + value, key);
L
liu-ganlin 已提交
550
  })(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
551 552 553
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
554
```
L
linhaoran 已提交
555 556 557 558


### entries

559
entries(): IterableIterator&lt;[K, V]&gt;
L
linhaoran 已提交
560

561
返回包含此映射中包含的键值对的新迭代器对象。
L
linhaoran 已提交
562

Z
zengyawen 已提交
563 564
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
565 566 567 568
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
569
| IterableIterator&lt;[K, V]&gt; | 返回一个迭代器。 |
Z
zengyawen 已提交
570

L
liu-ganlin 已提交
571 572 573 574 575 576 577 578
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The entries method cannot be bound. |

Z
zengyawen 已提交
579 580
**示例:**

581
```ts
Z
zengyawen 已提交
582
let hashMap = new HashMap();
L
lengchangjing 已提交
583 584
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
585 586 587
let iter = hashMap.entries();
let temp = iter.next().value;
while(temp != undefined) {
588 589
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
590 591
  temp = iter.next().value;
}
L
liu-ganlin 已提交
592
try {
L
liu-ganlin 已提交
593
  hashMap.entries.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
594 595 596
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
597
```
L
linhaoran 已提交
598 599 600 601


### [Symbol.iterator]

Z
zengyawen 已提交
602
[Symbol.iterator]\(): IterableIterator&lt;[K, V]&gt;
L
linhaoran 已提交
603 604 605

返回一个迭代器,迭代器的每一项都是一个 JavaScript 对象,并返回该对象。

Z
zengyawen 已提交
606 607
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
608 609 610 611
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
612
| IterableIterator&lt;[K, V]&gt; | 返回一个迭代器。 |
Z
zengyawen 已提交
613

L
liu-ganlin 已提交
614 615 616 617 618 619 620 621
**错误码:**

以下错误码的详细介绍请参见[containers错误码](../errorcodes/errorcode-containers.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
622
**示例:**
623
```ts
Z
zengyawen 已提交
624
let hashMap = new HashMap();
L
lengchangjing 已提交
625 626
hashMap.set("squirrel", 123);
hashMap.set("sparrow", 356);
Z
zengyawen 已提交
627 628 629

// 使用方法一:
for (let item of hashMap) { 
630 631
  console.log("key:" + item[0]);
  console.log("value:" + item[1]);
Z
zengyawen 已提交
632 633 634 635 636 637
}

// 使用方法二:
let iter = hashMap[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
638 639
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
640 641
  temp = iter.next().value;
}
L
liu-ganlin 已提交
642
try {
L
liu-ganlin 已提交
643
  hashMap[Symbol.iterator].bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
644 645 646
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
647
```