js-apis-treemap.md 16.3 KB
Newer Older
1
# @ohos.util.TreeMap (非线性容器TreeMap) 
L
linhaoran 已提交
2

3 4 5 6
TreeMap可用于存储具有关联关系的key-value键值对集合,存储元素中key值唯一,每个key对应一个value。

TreeMap底层使用红黑树实现,可以利用二叉树特性快速查找键值对。key值有序存储,可以实现快速的插入和删除。

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

**推荐使用场景:** 一般需要存储有序键值对的场景,可以使用TreeMap。
L
linhaoran 已提交
10

B
bi-hu 已提交
11
文档中存在泛型的使用,涉及以下泛型标记符:
12

B
bi-hu 已提交
13
- K:Key,键
14

B
bi-hu 已提交
15
- V:Value,值
L
lengchangjing 已提交
16

17 18 19 20
> **说明:**
>
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

B
bi-hu 已提交
21

L
linhaoran 已提交
22 23
## 导入模块

24
```ts
25
import TreeMap from '@ohos.util.TreeMap';  
L
linhaoran 已提交
26 27 28 29 30 31
```

## TreeMap

### 属性

Z
zengyawen 已提交
32 33
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
34
| 名称 | 类型 | 可读 | 可写 | 说明 |
L
linhaoran 已提交
35
| -------- | -------- | -------- | -------- | -------- |
36
| length | number | 是 | 否 | TreeMap的元素个数。 |
L
linhaoran 已提交
37 38 39 40


### constructor

Z
zengyawen 已提交
41
constructor(comparator?:(firstValue: K, secondValue: K) => boolean)
L
linhaoran 已提交
42 43 44

TreeMap的构造函数。

Z
zengyawen 已提交
45 46
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
47 48 49 50
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
51
| comparator | function | 否 | 用户自定义的比较函数,默认值为hole(一个空白占位符),表示没有提供比较函数。 |
Z
zengyawen 已提交
52

L
liu-ganlin 已提交
53 54
**错误码:**

B
bi-hu 已提交
55
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
56

L
liu-ganlin 已提交
57
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
58 59 60
| -------- | -------- |
| 10200012 | The TreeMap's constructor cannot be directly invoked. |

Z
zengyawen 已提交
61
**示例:**
L
linhaoran 已提交
62

63
```ts
Z
zengyawen 已提交
64 65
let treeMap = new TreeMap();
```
L
linhaoran 已提交
66 67 68 69


### isEmpty

70
isEmpty(): boolean
L
linhaoran 已提交
71 72 73

判断该容器是否为空。

Z
zengyawen 已提交
74 75
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
76 77 78 79 80
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 为空返回true,否则返回false。 |
L
linhaoran 已提交
81

L
liu-ganlin 已提交
82 83
**错误码:**

B
bi-hu 已提交
84
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
85

L
liu-ganlin 已提交
86
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
87 88 89
| -------- | -------- |
| 10200011 | The isEmpty method cannot be bound. |

Z
zengyawen 已提交
90 91
**示例:**

92
```ts
Z
zengyawen 已提交
93
const treeMap = new TreeMap();
94
let result = treeMap.isEmpty();
Z
zengyawen 已提交
95
```
L
linhaoran 已提交
96 97 98 99


### hasKey

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

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

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

Z
zengyawen 已提交
106
**参数:**
L
linhaoran 已提交
107

Z
zengyawen 已提交
108 109
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
110
| key | K | 是 | 指定key |
L
linhaoran 已提交
111

Z
zengyawen 已提交
112 113 114 115
**返回值:**

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

L
liu-ganlin 已提交
118 119
**错误码:**

B
bi-hu 已提交
120
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
121

L
liu-ganlin 已提交
122
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
123 124 125
| -------- | -------- |
| 10200011 | The hasKey method cannot be bound. |

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

128
```ts
Z
zengyawen 已提交
129
let treeMap = new TreeMap();
L
lengchangjing 已提交
130
treeMap.set("squirrel", 123);
B
bi-hu 已提交
131
let result = treeMap.hasKey("squirrel");
Z
zengyawen 已提交
132
```
L
linhaoran 已提交
133 134 135 136


### hasValue

Z
zengyawen 已提交
137
hasValue(value: V): boolean
L
linhaoran 已提交
138

W
wusongqing 已提交
139
判断此容器中是否含有该指定value。
L
linhaoran 已提交
140

Z
zengyawen 已提交
141 142
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
143 144 145 146
**参数:**

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

Z
zengyawen 已提交
149
**返回值:**
L
linhaoran 已提交
150

Z
zengyawen 已提交
151 152 153 154
| 类型 | 说明 |
| -------- | -------- |
| boolean | 包含指定元素返回true,否则返回false。 |

L
liu-ganlin 已提交
155 156
**错误码:**

B
bi-hu 已提交
157
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
158

L
liu-ganlin 已提交
159
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
160 161 162
| -------- | -------- |
| 10200011 | The hasValue method cannot be bound. |

Z
zengyawen 已提交
163 164
**示例:**

165
```ts
Z
zengyawen 已提交
166
let treeMap = new TreeMap();
L
lengchangjing 已提交
167
treeMap.set("squirrel", 123);
B
bi-hu 已提交
168
let result = treeMap.hasValue(123);
Z
zengyawen 已提交
169
```
L
linhaoran 已提交
170 171 172 173


### get

Z
zengyawen 已提交
174
get(key: K): V
L
linhaoran 已提交
175 176 177

获取指定key所对应的value。

Z
zengyawen 已提交
178 179
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
180 181 182 183
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
184
| key | K | 是 | 指定key。 |
Z
zengyawen 已提交
185 186

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

Z
zengyawen 已提交
188 189 190
| 类型 | 说明 |
| -------- | -------- |
| V | 返回key映射的value值。 |
L
linhaoran 已提交
191

L
liu-ganlin 已提交
192 193
**错误码:**

B
bi-hu 已提交
194
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
195

L
liu-ganlin 已提交
196
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
197 198 199
| -------- | -------- |
| 10200011 | The get method cannot be bound. |

Z
zengyawen 已提交
200 201
**示例:**

202
```ts
Z
zengyawen 已提交
203
let treeMap = new TreeMap();
L
lengchangjing 已提交
204 205 206
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
let result = treeMap.get("sparrow");
Z
zengyawen 已提交
207
```
L
linhaoran 已提交
208 209 210 211


### getFirstKey

212
getFirstKey(): K
L
linhaoran 已提交
213

214
获取容器中排序第一的key。
L
linhaoran 已提交
215

Z
zengyawen 已提交
216 217
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
218 219 220 221
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
222
| K | 返回排序第一的key。 |
Z
zengyawen 已提交
223

L
liu-ganlin 已提交
224 225
**错误码:**

B
bi-hu 已提交
226
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
227

L
liu-ganlin 已提交
228
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
229 230 231
| -------- | -------- |
| 10200011 | The getFirstKey method cannot be bound. |

Z
zengyawen 已提交
232
**示例:**
L
linhaoran 已提交
233

234
```ts
Z
zengyawen 已提交
235
let treeMap = new TreeMap();
L
lengchangjing 已提交
236 237
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
238 239
let result = treeMap.getFirstKey();
```
L
linhaoran 已提交
240 241 242 243


### getLastKey

244
getLastKey(): K
L
linhaoran 已提交
245

246
获取容器中排序最后的key。
L
linhaoran 已提交
247

Z
zengyawen 已提交
248 249
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
250
**返回值:**
L
linhaoran 已提交
251

Z
zengyawen 已提交
252 253
| 类型 | 说明 |
| -------- | -------- |
254
| K | 返回排序最后的key |
Z
zengyawen 已提交
255

L
liu-ganlin 已提交
256 257
**错误码:**

B
bi-hu 已提交
258
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
259

L
liu-ganlin 已提交
260
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
261 262 263
| -------- | -------- |
| 10200011 | The getLastKey method cannot be bound. |

Z
zengyawen 已提交
264 265
**示例:**

266
```ts
Z
zengyawen 已提交
267
let treeMap = new TreeMap();
L
lengchangjing 已提交
268 269
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
270 271
let result = treeMap.getLastKey();
```
L
linhaoran 已提交
272 273 274 275


### setAll

Z
zengyawen 已提交
276
setAll(map: TreeMap<K, V>): void
L
linhaoran 已提交
277

278
将一个TreeMap中的所有元素组添加到另一个TreeMap中。
L
linhaoran 已提交
279

Z
zengyawen 已提交
280 281
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
282 283 284 285
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
286
| map | TreeMap<K, V> | 是 | 该map会添加到其调用setAll接口的map对象中。 |
Z
zengyawen 已提交
287

L
liu-ganlin 已提交
288 289
**错误码:**

B
bi-hu 已提交
290
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
291

L
liu-ganlin 已提交
292
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
293 294 295
| -------- | -------- |
| 10200011 | The setAll method cannot be bound. |

Z
zengyawen 已提交
296
**示例:**
L
linhaoran 已提交
297

298
```ts
Z
zengyawen 已提交
299
let treeMap = new TreeMap();
L
lengchangjing 已提交
300 301
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
302
let map = new TreeMap();
B
bi-hu 已提交
303 304 305
map.set("demo", 12);
map.setAll(treeMap); // 将treeMap中的所有元素添加到map中
map.forEach((value, key) => {
B
bi-hu 已提交
306
  console.log("value" + value, "key" + key); // 打印结果 12 demo、356 sparrow、123 squirrel
B
bi-hu 已提交
307
})
Z
zengyawen 已提交
308
```
L
linhaoran 已提交
309 310 311


### set
312

Z
zengyawen 已提交
313
set(key: K, value: V): Object
L
linhaoran 已提交
314

315
向容器中添加一组数据。
L
linhaoran 已提交
316

Z
zengyawen 已提交
317 318
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
319 320 321 322 323 324
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 添加成员数据的键名。 |
| value | V | 是 | 添加成员数据的值。 |
L
linhaoran 已提交
325

Z
zengyawen 已提交
326
**返回值:**
L
linhaoran 已提交
327

Z
zengyawen 已提交
328 329
| 类型 | 说明 |
| -------- | -------- |
330
| Object | 返回添加后的treeMap |
Z
zengyawen 已提交
331

L
liu-ganlin 已提交
332 333
**错误码:**

B
bi-hu 已提交
334
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
335

L
liu-ganlin 已提交
336
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
337 338 339
| -------- | -------- |
| 10200011 | The set method cannot be bound. |

Z
zengyawen 已提交
340 341
**示例:**

342
```ts
Z
zengyawen 已提交
343
let treeMap = new TreeMap();
L
lengchangjing 已提交
344
treeMap.set("squirrel", 123);
Z
zengyawen 已提交
345
```
L
linhaoran 已提交
346 347 348 349


### remove

350
remove(key: K): V
L
linhaoran 已提交
351

352
删除指定key对应的元素。
L
linhaoran 已提交
353

Z
zengyawen 已提交
354 355
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
356 357 358 359
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
360
| key | K | 是 | 指定key。 |
Z
zengyawen 已提交
361 362

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

Z
zengyawen 已提交
364 365 366
| 类型 | 说明 |
| -------- | -------- |
| V | 返回删除元素的值。 |
L
linhaoran 已提交
367

L
liu-ganlin 已提交
368 369
**错误码:**

B
bi-hu 已提交
370
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
371

L
liu-ganlin 已提交
372
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
373 374 375
| -------- | -------- |
| 10200011 | The remove method cannot be bound. |

Z
zengyawen 已提交
376 377
**示例:**

378
```ts
Z
zengyawen 已提交
379
let treeMap = new TreeMap();
L
lengchangjing 已提交
380 381
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
B
bi-hu 已提交
382
let result = treeMap.remove("sparrow");
Z
zengyawen 已提交
383
```
L
linhaoran 已提交
384 385


386
### getLowerKey
L
linhaoran 已提交
387

388
getLowerKey(key: K): K
L
linhaoran 已提交
389 390 391

获取容器中比传入key排序靠前一位的key。

Z
zengyawen 已提交
392 393
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
394 395 396 397 398 399 400
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 对比的key值。 |

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

Z
zengyawen 已提交
402 403 404
| 类型 | 说明 |
| -------- | -------- |
| K | 返回排序中key前一位的数据。 |
L
linhaoran 已提交
405

L
liu-ganlin 已提交
406 407
**错误码:**

B
bi-hu 已提交
408
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
409

L
liu-ganlin 已提交
410
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
411 412 413
| -------- | -------- |
| 10200011 | The getLowerKey method cannot be bound. |

Z
zengyawen 已提交
414 415
**示例:**

416
```ts
Z
zengyawen 已提交
417
let treeMap = new TreeMap();
L
lengchangjing 已提交
418 419 420 421
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
treeMap.set("gander", 356);
let result = treeMap.getLowerKey("sparrow");
Z
zengyawen 已提交
422
```
L
linhaoran 已提交
423 424


425
### getHigherKey
L
linhaoran 已提交
426

427
getHigherKey(key: K): K
L
linhaoran 已提交
428 429 430

获取容器中比传入key排序靠后一位的key。

Z
zengyawen 已提交
431 432
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
433
**参数:**
L
linhaoran 已提交
434

Z
zengyawen 已提交
435 436 437
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 对比的key值。 |
L
linhaoran 已提交
438

Z
zengyawen 已提交
439 440 441 442 443 444
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| K | 返回排序中key后一位的数据。 |

L
liu-ganlin 已提交
445 446
**错误码:**

B
bi-hu 已提交
447
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
448

L
liu-ganlin 已提交
449
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
450 451 452
| -------- | -------- |
| 10200011 | The getHigherKey method cannot be bound. |

Z
zengyawen 已提交
453 454
**示例:**

455
```ts
Z
zengyawen 已提交
456
let treeMap = new TreeMap();
L
lengchangjing 已提交
457 458 459 460
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
treeMap.set("gander", 356);
let result = treeMap.getHigherKey("sparrow");
Z
zengyawen 已提交
461
```
L
linhaoran 已提交
462 463

### replace
464

465
replace(key: K, newValue: V): boolean
L
linhaoran 已提交
466

467
对容器中一组数据进行更新(替换)。
L
linhaoran 已提交
468

Z
zengyawen 已提交
469 470
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
471
**参数:**
L
linhaoran 已提交
472

Z
zengyawen 已提交
473 474
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
475 476
| key | K | 是 | 指定key。 |
| newValue | V | 是 | 替换的元素。 |
L
linhaoran 已提交
477

Z
zengyawen 已提交
478 479 480 481
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
482
| boolean | 对指定key对应的元素替换成功返回true,否则返回false。 |
Z
zengyawen 已提交
483

L
liu-ganlin 已提交
484 485
**错误码:**

B
bi-hu 已提交
486
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
487

L
liu-ganlin 已提交
488
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
489 490 491
| -------- | -------- |
| 10200011 | The replace method cannot be bound. |

Z
zengyawen 已提交
492 493
**示例:**

494
```ts
Z
zengyawen 已提交
495
let treeMap = new TreeMap();
L
lengchangjing 已提交
496 497
treeMap.set("sparrow", 123);
let result = treeMap.replace("sparrow", 357);
Z
zengyawen 已提交
498
```
L
linhaoran 已提交
499 500 501 502


### clear

Z
zengyawen 已提交
503
clear(): void
L
linhaoran 已提交
504

505
清除容器中的所有元素,并把length置为0。
L
linhaoran 已提交
506

Z
zengyawen 已提交
507 508
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
509 510
**错误码:**

B
bi-hu 已提交
511
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
512

L
liu-ganlin 已提交
513
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
514 515 516
| -------- | -------- |
| 10200011 | The clear method cannot be bound. |

Z
zengyawen 已提交
517 518
**示例:**

519
```ts
Z
zengyawen 已提交
520
let treeMap = new TreeMap();
L
lengchangjing 已提交
521 522
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
523 524
treeMap.clear();
```
L
linhaoran 已提交
525 526 527 528


### keys

Z
zengyawen 已提交
529
keys(): IterableIterator&lt;K&gt;
L
linhaoran 已提交
530 531 532

返回包含此映射中包含的键的新迭代器对象。

Z
zengyawen 已提交
533 534
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
535 536 537 538 539 540
**返回值:**

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

L
liu-ganlin 已提交
541 542
**错误码:**

B
bi-hu 已提交
543
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
544

L
liu-ganlin 已提交
545
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
546 547 548
| -------- | -------- |
| 10200011 | The keys method cannot be bound. |

Z
zengyawen 已提交
549 550
**示例:**

551
```ts
Z
zengyawen 已提交
552
let treeMap = new TreeMap();
L
lengchangjing 已提交
553 554
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
555 556 557
let iter = treeMap.keys();
let temp = iter.next().value;
while(temp != undefined) {
558
  console.log("value:" + temp);
Z
zengyawen 已提交
559
  temp = iter.next().value;
L
liu-ganlin 已提交
560
}
Z
zengyawen 已提交
561
```
L
linhaoran 已提交
562 563 564 565


### values

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

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

Z
zengyawen 已提交
570 571
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
572 573 574 575 576 577
**返回值:**

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

L
liu-ganlin 已提交
578 579
**错误码:**

B
bi-hu 已提交
580
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
581

L
liu-ganlin 已提交
582
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
583 584 585
| -------- | -------- |
| 10200011 | The values method cannot be bound. |

Z
zengyawen 已提交
586 587
**示例:**

588
```ts
Z
zengyawen 已提交
589
let treeMap = new TreeMap();
L
lengchangjing 已提交
590 591
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
592 593 594
let iter = treeMap.values();
let temp = iter.next().value;
while(temp != undefined) {
595
  console.log("value:" + temp);
Z
zengyawen 已提交
596 597 598
  temp = iter.next().value;
}
```
L
linhaoran 已提交
599 600 601 602


### forEach

603
forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object): void
L
linhaoran 已提交
604 605 606

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

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

Z
zengyawen 已提交
609 610 611 612
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
613
| callbackFn | function | 是 | 回调函数。 |
614
| thisArg | Object | 否 | callbackFn被调用时用作this值,默认值为当前实例对象。 |
Z
zengyawen 已提交
615

616
callbackFn的参数说明:
Z
zengyawen 已提交
617 618
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
619 620 621
| value | V | 否 | 当前遍历到的元素键值对的值,默认值为首个键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键,默认值为首个键值对的键。 |
| map | TreeMap<K, V> | 否 | 当前调用forEach方法的实例对象,默认值为当前实例对象。 |
Z
zengyawen 已提交
622

L
liu-ganlin 已提交
623 624
**错误码:**

B
bi-hu 已提交
625
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
626

L
liu-ganlin 已提交
627
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
628 629 630
| -------- | -------- |
| 10200011 | The forEach method cannot be bound. |

Z
zengyawen 已提交
631 632
**示例:**

633
```ts
Z
zengyawen 已提交
634
let treeMap = new TreeMap();
L
lengchangjing 已提交
635 636
treeMap.set("sparrow", 123);
treeMap.set("gull", 357);
Z
zengyawen 已提交
637
treeMap.forEach((value, key) => {
638
    console.log("value:" + value, "key:" + key);
Z
zengyawen 已提交
639 640
});
```
L
linhaoran 已提交
641 642 643 644


### entries

Z
zengyawen 已提交
645
entries(): IterableIterator<[K, V]>
L
linhaoran 已提交
646

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

Z
zengyawen 已提交
649 650
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
651 652 653 654 655 656
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator<[K, V]> | 返回一个迭代器。 |

L
liu-ganlin 已提交
657 658
**错误码:**

B
bi-hu 已提交
659
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
660

L
liu-ganlin 已提交
661
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
662 663 664
| -------- | -------- |
| 10200011 | The entries method cannot be bound. |

Z
zengyawen 已提交
665 666
**示例:**

667
```ts
Z
zengyawen 已提交
668
let treeMap = new TreeMap();
L
lengchangjing 已提交
669 670
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
671 672 673
let iter = treeMap.entries();
let temp = iter.next().value;
while(temp != undefined) {
674 675
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
676 677 678
  temp = iter.next().value;
}
```
L
linhaoran 已提交
679 680 681 682


### [Symbol.iterator]

683
[Symbol.iterator]\(): IterableIterator&lt;[K, V]&gt;
L
linhaoran 已提交
684

685
返回一个迭代器,迭代器的每一项都是一个JavaScript对象,并返回该对象。
Z
zengyawen 已提交
686

Z
zengyawen 已提交
687 688
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
689 690 691 692 693
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| IterableIterator<[K, V]> | 返回一个迭代器。 |

L
liu-ganlin 已提交
694 695
**错误码:**

B
bi-hu 已提交
696
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
liu-ganlin 已提交
697

L
liu-ganlin 已提交
698
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
699 700 701
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
702 703
**示例:**

704
```ts
Z
zengyawen 已提交
705
let treeMap = new TreeMap();
L
lengchangjing 已提交
706 707
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
708 709 710

// 使用方法一:
for (let item of treeMap) { 
711 712
  console.log("key:" + item[0]);
  console.log("value:" + item[1]);
Z
zengyawen 已提交
713 714 715 716 717 718
}

// 使用方法二:
let iter = treeMap[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
719 720
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
721 722 723
  temp = iter.next().value;
}
```