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

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

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

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

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

B
bi-hu 已提交
11 12 13 14 15 16 17
文档中存在泛型的使用,涉及以下泛型标记符:<br>
- T:Type,类

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

L
lengchangjing 已提交
18

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

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

## ArrayList

### 属性

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

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


### constructor

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

ArrayList的构造函数。

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

L
liu-ganlin 已提交
44 45
**错误码:**

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

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

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

54
```ts
55
let arrayList: ArrayList<string | number> = new ArrayList();
Z
zengyawen 已提交
56
```
L
linhaoran 已提交
57 58 59 60


### add

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

在ArrayList尾部插入元素。

Z
zengyawen 已提交
65 66
**系统能力:** SystemCapability.Utils.Lang

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

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

**返回值:**

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

L
liu-ganlin 已提交
79 80
**错误码:**

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

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

Z
zengyawen 已提交
87 88
**示例:**

89
```ts
90 91 92 93 94 95 96 97
class C1 {
  name: string = ""
  age: string = ""
}
let arrayList: ArrayList<string | number | boolean | Array<number> | C1> = new ArrayList();
let result1 = arrayList.add("a");
let arrayList1: ArrayList<number> = new ArrayList();
let result2 = arrayList.add(1);
98
let b = [1, 2, 3];
99 100 101 102
let result3 = arrayList.add(b);
let c : C1 = {name: "Dylon", age: "13"}
let result4 = arrayList.add(c);
let result5 = arrayList.add(false);
103
```
L
linhaoran 已提交
104 105 106

### insert

Z
zengyawen 已提交
107
insert(element: T, index: number): void
L
linhaoran 已提交
108 109 110

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

Z
zengyawen 已提交
111 112
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
113 114 115 116 117 118 119
**参数:**

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

L
liu-ganlin 已提交
120 121
**错误码:**

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

L
liu-ganlin 已提交
124
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
125 126
| -------- | -------- |
| 10200011 | The insert method cannot be bound. |
L
liu-ganlin 已提交
127
| 10200001 | The value of index is out of range. |
L
liu-ganlin 已提交
128

Z
zengyawen 已提交
129
**示例:**
L
linhaoran 已提交
130

131
```ts
132
let arrayList: ArrayList<number | string | boolean> = new ArrayList();
Z
zengyawen 已提交
133 134 135 136
arrayList.insert("A", 0);
arrayList.insert(0, 1);
arrayList.insert(true, 2);
```
L
linhaoran 已提交
137 138 139

### has

Z
zengyawen 已提交
140
has(element: T): boolean
L
linhaoran 已提交
141 142 143

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

Z
zengyawen 已提交
144 145
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
146
**参数:**
L
linhaoran 已提交
147

Z
zengyawen 已提交
148 149 150
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |
L
linhaoran 已提交
151

Z
zengyawen 已提交
152 153 154 155 156 157
**返回值:**

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

L
liu-ganlin 已提交
158 159
**错误码:**

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

L
liu-ganlin 已提交
162
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
163 164 165
| -------- | -------- |
| 10200011 | The has method cannot be bound. |

Z
zengyawen 已提交
166 167
**示例:**

168
```ts
169
let arrayList: ArrayList<string> = new ArrayList();
L
lengchangjing 已提交
170
arrayList.add("squirrel");
171
let result: boolean = arrayList.has("squirrel");
Z
zengyawen 已提交
172
```
L
linhaoran 已提交
173 174 175

### getIndexOf

Z
zengyawen 已提交
176
getIndexOf(element: T): number
L
linhaoran 已提交
177 178 179

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

Z
zengyawen 已提交
180 181
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
182 183 184 185 186 187 188 189 190 191 192 193
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
194 195
**错误码:**

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

L
liu-ganlin 已提交
198
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
199 200 201
| -------- | -------- |
| 10200011 | The getIndexOf method cannot be bound. |

Z
zengyawen 已提交
202 203
**示例:**

204
```ts
205
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
206 207 208 209 210 211 212
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(1);
arrayList.add(2);
arrayList.add(4);
213
let result: number = arrayList.getIndexOf(2);
Z
zengyawen 已提交
214 215
```

L
linhaoran 已提交
216 217
### getLastIndexOf

Z
zengyawen 已提交
218
getLastIndexOf(element: T): number
L
linhaoran 已提交
219 220 221

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

Z
zengyawen 已提交
222 223
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
224 225 226 227 228 229 230 231 232 233 234 235
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
236 237
**错误码:**

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

L
liu-ganlin 已提交
240
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
241 242 243
| -------- | -------- |
| 10200011 | The getLastIndexOf method cannot be bound. |

Z
zengyawen 已提交
244 245
**示例:**

246
```ts
247
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
248 249 250 251 252 253 254
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(1);
arrayList.add(2);
arrayList.add(4);
255
let result: number = arrayList.getLastIndexOf(2);
Z
zengyawen 已提交
256 257
```

L
linhaoran 已提交
258 259
### removeByIndex

Z
zengyawen 已提交
260
removeByIndex(index: number): T
L
linhaoran 已提交
261 262 263

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

Z
zengyawen 已提交
264 265
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
266 267 268 269 270 271 272 273 274 275 276 277
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
278 279
**错误码:**

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

L
liu-ganlin 已提交
282
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
283 284
| -------- | -------- |
| 10200011 | The removeByIndex method cannot be bound. |
L
liu-ganlin 已提交
285
| 10200001 | The value of index is out of range. |
L
liu-ganlin 已提交
286

Z
zengyawen 已提交
287 288
**示例:**

289
```ts
290
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
291 292 293 294 295
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(4);
296
let result: number = arrayList.removeByIndex(2);
Z
zengyawen 已提交
297
```
L
linhaoran 已提交
298 299 300

### remove

Z
zengyawen 已提交
301
remove(element: T): boolean
L
linhaoran 已提交
302 303 304

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

Z
zengyawen 已提交
305 306
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
307 308 309 310 311 312 313 314 315 316 317 318
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
319 320
**错误码:**

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

L
liu-ganlin 已提交
323
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
324 325 326
| -------- | -------- |
| 10200011 | The remove method cannot be bound. |

Z
zengyawen 已提交
327 328
**示例:**

329
```ts
330
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
331 332 333 334
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
335
let result: boolean = arrayList.remove(2);
Z
zengyawen 已提交
336
```
L
linhaoran 已提交
337 338 339

### removeByRange

Z
zengyawen 已提交
340
removeByRange(fromIndex: number, toIndex: number): void
L
linhaoran 已提交
341 342 343

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

Z
zengyawen 已提交
344 345
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
346 347 348 349 350 351 352
**参数:**

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

L
liu-ganlin 已提交
353 354
**错误码:**

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

L
liu-ganlin 已提交
357
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
358 359
| -------- | -------- |
| 10200011 | The removeByRange method cannot be bound. |
L
liu-ganlin 已提交
360
| 10200001 | The value of fromIndex or toIndex is out of range. |
L
liu-ganlin 已提交
361

Z
zengyawen 已提交
362 363
**示例:**

364
```ts
365
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
366 367 368 369 370 371 372
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.removeByRange(2, 4);
```

L
linhaoran 已提交
373
### replaceAllElements
374

375
replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => T,
Z
zengyawen 已提交
376 377 378 379
thisArg?: Object): void

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

Z
zengyawen 已提交
380 381
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
382 383 384 385
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
386
| callbackFn | function | 是 | 回调函数。 |
387
| thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 |
Z
zengyawen 已提交
388 389 390 391 392

callbackfn的参数说明:

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
393
| value | T | 是 | 当前遍历到的元素。 |
394 395
| index | number | 否 | 当前遍历到的下标值,默认值为0。 |
| arrlist | ArrayList&lt;T&gt; | 否 | 当前调用replaceAllElements方法的实例对象,默认值为当前实例对象。 |
Z
zengyawen 已提交
396

L
liu-ganlin 已提交
397 398
**错误码:**

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

L
liu-ganlin 已提交
401
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
402 403 404
| -------- | -------- |
| 10200011 | The replaceAllElements method cannot be bound. |

Z
zengyawen 已提交
405 406
**示例:**

407
```ts
408
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
409 410 411 412
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
413 414 415
arrayList.replaceAllElements((value: number): number => {
  // 用户操作逻辑根据实际场景进行添加。
  return value;
Z
zengyawen 已提交
416 417 418
});
```

L
linhaoran 已提交
419
### forEach
420

421
forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => void,
Z
zengyawen 已提交
422
thisArg?: Object): void
L
linhaoran 已提交
423 424 425

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

Z
zengyawen 已提交
426 427
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
428 429 430 431
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
432
| callbackFn | function | 是 | 回调函数。 |
433
| thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 |
Z
zengyawen 已提交
434 435 436 437 438 439

callbackfn的参数说明:

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

L
liu-ganlin 已提交
443 444
**错误码:**

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

L
liu-ganlin 已提交
447
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
448 449 450
| -------- | -------- |
| 10200011 | The forEach method cannot be bound. |

Z
zengyawen 已提交
451 452
**示例:**

453
```ts
454
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
455 456 457 458
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
459
arrayList.forEach((value: number, index?: number) => {
460
  console.log("hyq value:" + value, "index:" + index);
Z
zengyawen 已提交
461 462 463
});
```

L
linhaoran 已提交
464
### sort
465

Z
zengyawen 已提交
466 467 468 469
sort(comparator?: (firstValue: T, secondValue: T) => number): void

对ArrayList中的元素排序。

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

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

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
476
| comparator | function | 否 | 回调函数,默认为升序排序的回调函数。 |
Z
zengyawen 已提交
477 478 479 480 481 482 483 484

comparator的参数说明:

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

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

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

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

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

495
```ts
496
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
497 498 499 500
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
501 502
arrayList.sort((a: number, b: number) => a - b);
arrayList.sort((a: number, b: number) => b - a);
Z
zengyawen 已提交
503 504 505
arrayList.sort();
```

L
linhaoran 已提交
506
### subArrayList
507

Z
zengyawen 已提交
508 509 510 511
subArrayList(fromIndex: number, toIndex: number): ArrayList&lt;T&gt;

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

Z
zengyawen 已提交
512 513
**系统能力:** SystemCapability.Utils.Lang

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

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

**返回值:**

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

L
liu-ganlin 已提交
527 528
**错误码:**

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

L
liu-ganlin 已提交
531
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
532 533
| -------- | -------- |
| 10200011 | The subArrayList method cannot be bound. |
L
liu-ganlin 已提交
534
| 10200001 | The value of fromIndex or toIndex is out of range. |
L
liu-ganlin 已提交
535

Z
zengyawen 已提交
536 537
**示例:**

538
```ts
539
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
540 541 542 543
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
544
let result: ArrayList<number> = arrayList.subArrayList(2, 4);
Z
zengyawen 已提交
545
```
L
linhaoran 已提交
546 547

### clear
548

Z
zengyawen 已提交
549 550 551 552
clear(): void

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

Z
zengyawen 已提交
553 554
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
555 556
**错误码:**

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

L
liu-ganlin 已提交
559
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
560 561 562
| -------- | -------- |
| 10200011 | The clear method cannot be bound. |

Z
zengyawen 已提交
563 564
**示例:**

565
```ts
566
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
567 568 569 570 571 572 573
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.clear();
```

L
linhaoran 已提交
574
### clone
575

Z
zengyawen 已提交
576 577
clone(): ArrayList&lt;T&gt; 

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

Z
zengyawen 已提交
580 581
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
582 583 584 585 586 587 588

**返回值:**

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

L
liu-ganlin 已提交
589 590
**错误码:**

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

L
liu-ganlin 已提交
593
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
594 595 596
| -------- | -------- |
| 10200011 | The clone method cannot be bound. |

Z
zengyawen 已提交
597 598
**示例:**

599
```ts
600
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
601 602 603 604
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
605
let result:  ArrayList<number> = arrayList.clone();
Z
zengyawen 已提交
606 607
```

L
linhaoran 已提交
608
### getCapacity
609

Z
zengyawen 已提交
610
getCapacity(): number
L
linhaoran 已提交
611 612 613

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

Z
zengyawen 已提交
614 615
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
616 617 618 619 620 621
**返回值:**

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

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

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

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

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

632
```ts
633
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
634 635 636 637
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
638
let result: number = arrayList.getCapacity();
Z
zengyawen 已提交
639 640
```

L
linhaoran 已提交
641
### convertToArray
642

Z
zengyawen 已提交
643 644 645 646
convertToArray(): Array&lt;T&gt;

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

Z
zengyawen 已提交
647 648
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
649 650 651 652 653 654
**返回值:**

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

L
liu-ganlin 已提交
655 656
**错误码:**

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

L
liu-ganlin 已提交
659
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
660 661 662
| -------- | -------- |
| 10200011 | The convertToArray method cannot be bound. |

Z
zengyawen 已提交
663 664
**示例:**

665
```ts
666
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
667 668 669 670
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
671
let result: Array<number> = arrayList.convertToArray();
Z
zengyawen 已提交
672 673
```

L
linhaoran 已提交
674
### isEmpty
675

Z
zengyawen 已提交
676
isEmpty(): boolean
L
linhaoran 已提交
677 678 679

判断该ArrayList是否为空。

Z
zengyawen 已提交
680 681
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
682 683 684 685 686 687
**返回值:**

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

L
liu-ganlin 已提交
688 689
**错误码:**

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

L
liu-ganlin 已提交
692
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
693 694 695
| -------- | -------- |
| 10200011 | The isEmpty method cannot be bound. |

Z
zengyawen 已提交
696 697
**示例:**

698
```ts
699
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
700 701 702 703
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
704
let result: boolean = arrayList.isEmpty();
Z
zengyawen 已提交
705 706
```

L
linhaoran 已提交
707
### increaseCapacityTo
708

Z
zengyawen 已提交
709
increaseCapacityTo(newCapacity: number): void
L
linhaoran 已提交
710 711 712

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

Z
zengyawen 已提交
713 714
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
715 716 717 718 719 720
**参数:**

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

L
liu-ganlin 已提交
721 722
**错误码:**

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

L
liu-ganlin 已提交
725
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
726 727 728
| -------- | -------- |
| 10200011 | The increaseCapacityTo method cannot be bound. |

Z
zengyawen 已提交
729 730
**示例:**

731
```ts
732
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
733 734 735 736 737 738 739 740
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.increaseCapacityTo(2);
arrayList.increaseCapacityTo(8);
```

L
linhaoran 已提交
741
### trimToCurrentLength
742

Z
zengyawen 已提交
743
trimToCurrentLength(): void
L
linhaoran 已提交
744 745 746

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

Z
zengyawen 已提交
747 748
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
749 750
**错误码:**

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

L
liu-ganlin 已提交
753
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
754 755 756
| -------- | -------- |
| 10200011 | The trimToCurrentLength method cannot be bound. |

Z
zengyawen 已提交
757 758
**示例:**

759
```ts
760
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
761 762 763 764
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
765
arrayList.trimToCurrentLength();
Z
zengyawen 已提交
766 767
```

L
linhaoran 已提交
768 769
### [Symbol.iterator]

Z
zengyawen 已提交
770 771 772 773
[Symbol.iterator]\(): IterableIterator&lt;T&gt;

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

Z
zengyawen 已提交
774 775
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
776 777 778 779 780 781
**返回值:**

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

L
liu-ganlin 已提交
782 783
**错误码:**

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

L
liu-ganlin 已提交
786
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
787 788 789
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
790 791
**示例:**

792
```ts
793
let arrayList: ArrayList<number> = new ArrayList();
Z
zengyawen 已提交
794 795 796 797 798 799
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);

// 使用方法一:
800 801 802 803
let numbers: Array<number> = arrayList.convertToArray()
for (let item of numbers) {
  console.log(`hyq value : ${item}`);
}
Z
zengyawen 已提交
804 805 806

// 使用方法二:
let iter = arrayList[Symbol.iterator]();
807 808 809 810
let temp = iter.next();
while(!temp.done) {
    console.log(`value:${temp.value}`);
    temp = iter.next();
Z
zengyawen 已提交
811 812
}
```