js-apis-arraylist.md 19.2 KB
Newer Older
1
# @ohos.util.ArrayList (线性容器ArrayList)
L
linhaoran 已提交
2

zyjhandsome's avatar
zyjhandsome 已提交
3
> **说明:**
L
linhaoran 已提交
4 5
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

6 7 8 9 10 11 12 13
ArrayList是一种线性数据结构,底层基于数组实现。ArrayList会根据实际需要动态调整容量,每次扩容增加50%。

ArrayList和[Vector](js-apis-vector.md)相似,都是基于数组实现。它们都可以动态调整容量,但Vector每次扩容增加1倍。

ArrayList和[LinkedList](js-apis-linkedlist.md)相比,ArrayList的随机访问效率更高。但由于ArrayList的增删操作会影响数组内其他元素的移动,LinkedList的增加和删除操作效率更高。

**推荐使用场景:** 当需要频繁读取集合中的元素时,推荐使用ArrayList。

L
lengchangjing 已提交
14 15 16
文档中存在泛型的使用,涉及以下泛型标记符:<br>
- T: Type, 类

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

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

## ArrayList

### 属性

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

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


### constructor

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

ArrayList的构造函数。

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

L
liu-ganlin 已提交
42 43
**错误码:**

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

L
liu-ganlin 已提交
46
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
47 48 49
| -------- | -------- |
| 10200012 | The ArrayList's constructor cannot be directly invoked. |

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

52
```ts
Z
zengyawen 已提交
53 54
let arrayList = new ArrayList();
```
L
linhaoran 已提交
55 56 57 58


### add

Z
zengyawen 已提交
59
add(element: T): boolean
L
linhaoran 已提交
60 61 62

在ArrayList尾部插入元素。

Z
zengyawen 已提交
63 64
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
65 66 67 68 69 70 71 72 73 74 75 76
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 待插入的元素。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 插入成功返回true,失败返回false。 |

L
liu-ganlin 已提交
77 78
**错误码:**

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

L
liu-ganlin 已提交
81
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
82 83 84
| -------- | -------- |
| 10200011 | The add method cannot be bound. |

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

87 88 89 90 91 92 93 94 95 96
```ts
let arrayList = new ArrayList();
let result = arrayList.add("a");
let result1 = arrayList.add(1);
let b = [1, 2, 3];
let result2 = arrayList.add(b);
let c = {name: "Dylon", age: "13"};
let result3 = arrayList.add(c);
let result4 = arrayList.add(false);
```
L
linhaoran 已提交
97 98 99

### insert

Z
zengyawen 已提交
100
insert(element: T, index: number): void
L
linhaoran 已提交
101 102 103

在长度范围内任意位置插入指定元素。

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

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

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 被插入的元素。 |
| index | number | 是 | 被插入的位置索引。 |

L
liu-ganlin 已提交
113 114
**错误码:**

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

L
liu-ganlin 已提交
117
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
118 119
| -------- | -------- |
| 10200011 | The insert method cannot be bound. |
L
liu-ganlin 已提交
120
| 10200001 | The value of index is out of range. |
L
liu-ganlin 已提交
121

Z
zengyawen 已提交
122
**示例:**
L
linhaoran 已提交
123

124
```ts
Z
zengyawen 已提交
125 126 127 128 129
let arrayList = new ArrayList();
arrayList.insert("A", 0);
arrayList.insert(0, 1);
arrayList.insert(true, 2);
```
L
linhaoran 已提交
130 131 132

### has

Z
zengyawen 已提交
133
has(element: T): boolean
L
linhaoran 已提交
134 135 136

判断此ArrayList中是否含有该指定元素。

Z
zengyawen 已提交
137 138
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
139
**参数:**
L
linhaoran 已提交
140

Z
zengyawen 已提交
141 142 143
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |
L
linhaoran 已提交
144

Z
zengyawen 已提交
145 146 147 148 149 150
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 返回true表示包含指定元素,否则返回false。 |

L
liu-ganlin 已提交
151 152
**错误码:**

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

L
liu-ganlin 已提交
155
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
156 157 158
| -------- | -------- |
| 10200011 | The has method cannot be bound. |

Z
zengyawen 已提交
159 160
**示例:**

161
```ts
Z
zengyawen 已提交
162
let arrayList = new ArrayList();
L
lengchangjing 已提交
163 164 165
let result = arrayList.has("squirrel");
arrayList.add("squirrel");
let result1 = arrayList.has("squirrel");
Z
zengyawen 已提交
166
```
L
linhaoran 已提交
167 168 169

### getIndexOf

Z
zengyawen 已提交
170
getIndexOf(element: T): number
L
linhaoran 已提交
171 172 173

返回指定元素第一次出现时的下标值,查找失败返回-1。

Z
zengyawen 已提交
174 175
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
176 177 178 179 180 181 182 183 184 185 186 187
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回指定元素第一次出现时的下标值,查找失败返回-1。 |

L
liu-ganlin 已提交
188 189
**错误码:**

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

L
liu-ganlin 已提交
192
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
193 194 195
| -------- | -------- |
| 10200011 | The getIndexOf method cannot be bound. |

Z
zengyawen 已提交
196 197
**示例:**

198
```ts
Z
zengyawen 已提交
199 200 201 202 203 204 205 206
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(1);
arrayList.add(2);
arrayList.add(4);
207
let result = arrayList.getIndexOf(2);
Z
zengyawen 已提交
208 209
```

L
linhaoran 已提交
210 211
### getLastIndexOf

Z
zengyawen 已提交
212
getLastIndexOf(element: T): number
L
linhaoran 已提交
213 214 215

返回指定元素最后一次出现时的下标值,查找失败返回-1。

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

Z
zengyawen 已提交
218 219 220 221 222 223 224 225 226 227 228 229
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回指定元素最后一次出现时的下标值,查找失败返回-1。 |

L
liu-ganlin 已提交
230 231
**错误码:**

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

L
liu-ganlin 已提交
234
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
235 236 237
| -------- | -------- |
| 10200011 | The getLastIndexOf method cannot be bound. |

Z
zengyawen 已提交
238 239
**示例:**

240
```ts
Z
zengyawen 已提交
241 242 243 244 245 246 247 248
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(1);
arrayList.add(2);
arrayList.add(4);
249
let result = arrayList.getLastIndexOf(2);
Z
zengyawen 已提交
250 251
```

L
linhaoran 已提交
252 253
### removeByIndex

Z
zengyawen 已提交
254
removeByIndex(index: number): T
L
linhaoran 已提交
255 256 257

根据元素的下标值查找元素,返回元素后将其删除。

Z
zengyawen 已提交
258 259
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
260 261 262 263 264 265 266 267 268 269 270 271
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| index | number | 是 | 指定元素的下标值。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| T | 返回删除的元素。 |

L
liu-ganlin 已提交
272 273
**错误码:**

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

L
liu-ganlin 已提交
276
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
277 278
| -------- | -------- |
| 10200011 | The removeByIndex method cannot be bound. |
L
liu-ganlin 已提交
279
| 10200001 | The value of index is out of range. |
L
liu-ganlin 已提交
280

Z
zengyawen 已提交
281 282
**示例:**

283
```ts
Z
zengyawen 已提交
284 285 286 287 288 289
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(4);
290
let result = arrayList.removeByIndex(2);
Z
zengyawen 已提交
291
```
L
linhaoran 已提交
292 293 294

### remove

Z
zengyawen 已提交
295
remove(element: T): boolean
L
linhaoran 已提交
296 297 298

删除查找到的第一个指定的元素。

Z
zengyawen 已提交
299 300
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
301 302 303 304 305 306 307 308 309 310 311 312
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 删除成功返回true,失败返回false。 |

L
liu-ganlin 已提交
313 314
**错误码:**

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

L
liu-ganlin 已提交
317
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
318 319 320
| -------- | -------- |
| 10200011 | The remove method cannot be bound. |

Z
zengyawen 已提交
321 322
**示例:**

323
```ts
Z
zengyawen 已提交
324 325 326 327 328
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
329
let result = arrayList.remove(2);
Z
zengyawen 已提交
330
```
L
linhaoran 已提交
331 332 333

### removeByRange

Z
zengyawen 已提交
334
removeByRange(fromIndex: number, toIndex: number): void
L
linhaoran 已提交
335 336 337

从一段范围内删除元素,包括起始值但不包括终止值。

Z
zengyawen 已提交
338 339
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
340 341 342 343 344 345 346
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| fromIndex | number | 是 | 起始下标。 |
| toIndex | number | 是 | 终止下标。 |

L
liu-ganlin 已提交
347 348
**错误码:**

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

L
liu-ganlin 已提交
351
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
352 353
| -------- | -------- |
| 10200011 | The removeByRange method cannot be bound. |
L
liu-ganlin 已提交
354
| 10200001 | The value of fromIndex or toIndex is out of range. |
L
liu-ganlin 已提交
355

Z
zengyawen 已提交
356 357
**示例:**

358
```ts
Z
zengyawen 已提交
359 360 361 362 363 364 365 366
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.removeByRange(2, 4);
```

L
linhaoran 已提交
367
### replaceAllElements
368

369
replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => T,
Z
zengyawen 已提交
370 371 372 373
thisArg?: Object): void

用户操作ArrayList中的元素,用操作后的元素替换原元素并返回操作后的元素。

Z
zengyawen 已提交
374 375
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
376 377 378 379
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
380
| callbackFn | function | 是 | 回调函数。 |
Z
zengyawen 已提交
381 382 383 384 385 386
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |

callbackfn的参数说明:

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
387 388 389
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| arrlist | ArrayList&lt;T&gt; | 否 | 当前调用replaceAllElements方法的实例对象。 |
Z
zengyawen 已提交
390

L
liu-ganlin 已提交
391 392
**错误码:**

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

L
liu-ganlin 已提交
395
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
396 397 398
| -------- | -------- |
| 10200011 | The replaceAllElements method cannot be bound. |

Z
zengyawen 已提交
399 400
**示例:**

401
```ts
Z
zengyawen 已提交
402 403 404 405 406
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
407 408 409
arrayList.replaceAllElements((value) => {
    // 用户操作逻辑根据实际场景进行添加。
    return value;
Z
zengyawen 已提交
410 411 412
});
```

L
linhaoran 已提交
413
### forEach
414

415
forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => void,
Z
zengyawen 已提交
416
thisArg?: Object): void
L
linhaoran 已提交
417 418 419

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

Z
zengyawen 已提交
420 421
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
422 423 424 425
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
426
| callbackFn | function | 是 | 回调函数。 |
Z
zengyawen 已提交
427 428 429 430 431 432 433 434
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |

callbackfn的参数说明:

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
435
| arrlist | ArrayList&lt;T&gt; | 否 | 当前调用forEach方法的实例对象。 |
Z
zengyawen 已提交
436

L
liu-ganlin 已提交
437 438
**错误码:**

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

L
liu-ganlin 已提交
441
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
442 443 444
| -------- | -------- |
| 10200011 | The forEach method cannot be bound. |

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

447
```ts
Z
zengyawen 已提交
448 449 450 451 452 453
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.forEach((value, index) => {
454
    console.log("value:" + value, "index:" + index);
Z
zengyawen 已提交
455 456 457
});
```

L
linhaoran 已提交
458
### sort
459

Z
zengyawen 已提交
460 461 462 463
sort(comparator?: (firstValue: T, secondValue: T) => number): void

对ArrayList中的元素排序。

Z
zengyawen 已提交
464 465
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 回调函数。 |

comparator的参数说明:

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| firstValue | T | 是 | 前一项元素。 |
| secondValue | T | 是 | 后一项元素。 |

L
liu-ganlin 已提交
479 480
**错误码:**

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

L
liu-ganlin 已提交
483
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
484 485 486
| -------- | -------- |
| 10200011 | The sort method cannot be bound. |

Z
zengyawen 已提交
487 488
**示例:**

489
```ts
Z
zengyawen 已提交
490 491 492 493 494
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
495 496
arrayList.sort((a: number, b: number) => a - b);
arrayList.sort((a: number, b: number) => b - a);
Z
zengyawen 已提交
497 498 499
arrayList.sort();
```

L
linhaoran 已提交
500
### subArrayList
501

Z
zengyawen 已提交
502 503 504 505
subArrayList(fromIndex: number, toIndex: number): ArrayList&lt;T&gt;

根据下标截取ArrayList中的一段元素,并返回这一段ArrayList实例,包括起始值但不包括终止值。

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

Z
zengyawen 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| fromIndex | number | 是 | 起始下标。 |
| toIndex | number | 是 | 终止下标。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| ArrayList&lt;T&gt; | 返回ArrayList对象实例。 |

L
liu-ganlin 已提交
521 522
**错误码:**

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

L
liu-ganlin 已提交
525
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
526 527
| -------- | -------- |
| 10200011 | The subArrayList method cannot be bound. |
L
liu-ganlin 已提交
528
| 10200001 | The value of fromIndex or toIndex is out of range. |
L
liu-ganlin 已提交
529

Z
zengyawen 已提交
530 531
**示例:**

532
```ts
Z
zengyawen 已提交
533 534 535 536 537
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
538 539 540
let result1 = arrayList.subArrayList(2, 4);
let result2 = arrayList.subArrayList(4, 3);
let result3 = arrayList.subArrayList(2, 6);
Z
zengyawen 已提交
541
```
L
linhaoran 已提交
542 543

### clear
544

Z
zengyawen 已提交
545 546 547 548
clear(): void

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

Z
zengyawen 已提交
549 550
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
551 552
**错误码:**

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

L
liu-ganlin 已提交
555
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
556 557 558
| -------- | -------- |
| 10200011 | The clear method cannot be bound. |

Z
zengyawen 已提交
559 560
**示例:**

561
```ts
Z
zengyawen 已提交
562 563 564 565 566 567 568 569
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.clear();
```

L
linhaoran 已提交
570
### clone
571

Z
zengyawen 已提交
572 573
clone(): ArrayList&lt;T&gt; 

574 575
克隆一个与ArrayList相同的实例,并返回克隆后的实例。修改克隆后的实例并不会影响原实例。

Z
zengyawen 已提交
576 577
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
578 579 580 581 582 583 584

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| ArrayList&lt;T&gt; | 返回ArrayList对象实例。 |

L
liu-ganlin 已提交
585 586
**错误码:**

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

L
liu-ganlin 已提交
589
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
590 591 592
| -------- | -------- |
| 10200011 | The clone method cannot be bound. |

Z
zengyawen 已提交
593 594
**示例:**

595
```ts
Z
zengyawen 已提交
596 597 598 599 600
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
601
let result = arrayList.clone();
Z
zengyawen 已提交
602 603
```

L
linhaoran 已提交
604
### getCapacity
605

Z
zengyawen 已提交
606
getCapacity(): number
L
linhaoran 已提交
607 608 609

获取当前实例的容量大小。

Z
zengyawen 已提交
610 611
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
612 613 614 615 616 617
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回arraylist的容量大小。 |

L
liu-ganlin 已提交
618 619
**错误码:**

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

L
liu-ganlin 已提交
622
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
623 624 625
| -------- | -------- |
| 10200011 | The getCapacity method cannot be bound. |

Z
zengyawen 已提交
626 627
**示例:**

628
```ts
Z
zengyawen 已提交
629 630 631 632 633
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
634
let result = arrayList.getCapacity();
Z
zengyawen 已提交
635 636
```

L
linhaoran 已提交
637
### convertToArray
638

Z
zengyawen 已提交
639 640 641 642
convertToArray(): Array&lt;T&gt;

把当前ArrayList实例转换成数组,并返回转换后的数组。

Z
zengyawen 已提交
643 644
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
645 646 647 648 649 650
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Array&lt;T&gt; | 返回数组类型。 |

L
liu-ganlin 已提交
651 652
**错误码:**

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

L
liu-ganlin 已提交
655
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
656 657 658
| -------- | -------- |
| 10200011 | The convertToArray method cannot be bound. |

Z
zengyawen 已提交
659 660
**示例:**

661
```ts
Z
zengyawen 已提交
662 663 664 665 666
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
667
let result = arrayList.convertToArray();
Z
zengyawen 已提交
668 669
```

L
linhaoran 已提交
670
### isEmpty
671

Z
zengyawen 已提交
672
isEmpty(): boolean
L
linhaoran 已提交
673 674 675

判断该ArrayList是否为空。

Z
zengyawen 已提交
676 677
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
678 679 680 681 682 683
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 为空返回true,不为空返回false。 |

L
liu-ganlin 已提交
684 685
**错误码:**

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

L
liu-ganlin 已提交
688
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
689 690 691
| -------- | -------- |
| 10200011 | The isEmpty method cannot be bound. |

Z
zengyawen 已提交
692 693
**示例:**

694
```ts
Z
zengyawen 已提交
695 696 697 698 699
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
700
let result = arrayList.isEmpty();
Z
zengyawen 已提交
701 702
```

L
linhaoran 已提交
703
### increaseCapacityTo
704

Z
zengyawen 已提交
705
increaseCapacityTo(newCapacity: number): void
L
linhaoran 已提交
706 707 708

如果传入的新容量大于或等于ArrayList中的元素个数,将容量变更为新容量。

Z
zengyawen 已提交
709 710
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
711 712 713 714 715 716
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| newCapacity | number | 是 | 新容量。 |

L
liu-ganlin 已提交
717 718
**错误码:**

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

L
liu-ganlin 已提交
721
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
722 723 724
| -------- | -------- |
| 10200011 | The increaseCapacityTo method cannot be bound. |

Z
zengyawen 已提交
725 726
**示例:**

727
```ts
Z
zengyawen 已提交
728 729 730 731 732 733 734 735 736
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.increaseCapacityTo(2);
arrayList.increaseCapacityTo(8);
```

L
linhaoran 已提交
737
### trimToCurrentLength
738

Z
zengyawen 已提交
739
trimToCurrentLength(): void
L
linhaoran 已提交
740 741 742

把容量限制为当前的length大小。

Z
zengyawen 已提交
743 744
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
745 746
**错误码:**

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

L
liu-ganlin 已提交
749
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
750 751 752
| -------- | -------- |
| 10200011 | The trimToCurrentLength method cannot be bound. |

Z
zengyawen 已提交
753 754
**示例:**

755
```ts
Z
zengyawen 已提交
756 757 758 759 760
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
761
arrayList.trimToCurrentLength();
Z
zengyawen 已提交
762 763
```

L
linhaoran 已提交
764 765
### [Symbol.iterator]

Z
zengyawen 已提交
766 767 768 769
[Symbol.iterator]\(): IterableIterator&lt;T&gt;

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

Z
zengyawen 已提交
770 771
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
772 773 774 775 776 777
**返回值:**

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

L
liu-ganlin 已提交
778 779
**错误码:**

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

L
liu-ganlin 已提交
782
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
783 784 785
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
786 787
**示例:**

788
```ts
Z
zengyawen 已提交
789 790 791 792 793 794 795 796
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);

// 使用方法一:
for (let item of arrayList) { 
797
    console.log(`value:${item}`); 
Z
zengyawen 已提交
798 799 800 801 802 803
} 

// 使用方法二:
let iter = arrayList[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
804 805
    console.log(`value:${temp}`);
    temp = iter.next().value;
Z
zengyawen 已提交
806 807
}
```