js-apis-arraylist.md 24.7 KB
Newer Older
L
linhaoran 已提交
1 2 3 4 5
# 线性容器ArrayList

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从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 44 45
**错误码:**

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

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
let arrayList = new ArrayList();
L
liu-ganlin 已提交
54 55 56 57 58
try {
  let arrayList2 = ArrayList();
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
59
```
L
linhaoran 已提交
60 61 62 63


### add

Z
zengyawen 已提交
64
add(element: T): boolean
L
linhaoran 已提交
65 66 67

在ArrayList尾部插入元素。

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

Z
zengyawen 已提交
70 71 72 73 74 75 76 77 78 79 80 81
**参数:**

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

**返回值:**

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

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

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

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

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

92
  ```ts
93 94 95 96 97
  let arrayList = new ArrayList();
  let result = arrayList.add("a");
  let result1 = arrayList.add(1);
  let b = [1, 2, 3];
  let result2 = arrayList.add(b);
L
lengchangjing 已提交
98
  let c = {name: "Dylon", age: "13"};
L
liu-ganlin 已提交
99 100
  let result3 = arrayList.add(c);
  let result4 = arrayList.add(false);
L
liu-ganlin 已提交
101
  try {
L
lengchangjing 已提交
102
    arrayList.add.bind({}, "b")(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
103 104 105
  } catch(err) {
    console.log(`${err.code} - ${err.name} - ${err.message}`);
  }
106
  ```
L
linhaoran 已提交
107 108 109

### insert

Z
zengyawen 已提交
110
insert(element: T, index: number): void
L
linhaoran 已提交
111 112 113

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

Z
zengyawen 已提交
114 115
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
116 117 118 119 120 121 122
**参数:**

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

L
liu-ganlin 已提交
123 124 125 126
**错误码:**

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

L
liu-ganlin 已提交
127
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
128 129 130 131
| -------- | -------- |
| 10200011 | The insert method cannot be bound. |
| 10200001 | The value of parameters are out of range. |

Z
zengyawen 已提交
132
**示例:**
L
linhaoran 已提交
133

134
```ts
Z
zengyawen 已提交
135 136 137 138
let arrayList = new ArrayList();
arrayList.insert("A", 0);
arrayList.insert(0, 1);
arrayList.insert(true, 2);
L
liu-ganlin 已提交
139
try {
L
lengchangjing 已提交
140
  arrayList.insert.bind({}, 1, 2)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
141 142 143 144
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
liu-ganlin 已提交
145
  let res = arrayList.insert(8, 11); // 测试越界异常
L
liu-ganlin 已提交
146 147 148 149
} catch (err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
liu-ganlin 已提交
150
  let res = arrayList.insert("a", "b"); // 测试类型异常
L
liu-ganlin 已提交
151 152 153
} catch (err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
154
```
L
linhaoran 已提交
155 156 157

### has

Z
zengyawen 已提交
158
has(element: T): boolean
L
linhaoran 已提交
159 160 161

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

Z
zengyawen 已提交
162 163
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
164
**参数:**
L
linhaoran 已提交
165

Z
zengyawen 已提交
166 167 168
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 指定元素。 |
L
linhaoran 已提交
169

Z
zengyawen 已提交
170 171 172 173 174 175
**返回值:**

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

L
liu-ganlin 已提交
176 177 178 179
**错误码:**

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

L
liu-ganlin 已提交
180
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
181 182 183
| -------- | -------- |
| 10200011 | The has method cannot be bound. |

Z
zengyawen 已提交
184 185
**示例:**

186
```ts
Z
zengyawen 已提交
187
let arrayList = new ArrayList();
L
lengchangjing 已提交
188 189 190
let result = arrayList.has("squirrel");
arrayList.add("squirrel");
let result1 = arrayList.has("squirrel");
L
liu-ganlin 已提交
191
try {
L
lengchangjing 已提交
192
  arrayList.has.bind({}, "squirrel")(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
193 194 195
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
196
```
L
linhaoran 已提交
197 198 199

### getIndexOf

Z
zengyawen 已提交
200
getIndexOf(element: T): number
L
linhaoran 已提交
201 202 203

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

Z
zengyawen 已提交
204 205
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
206 207 208 209 210 211 212 213 214 215 216 217
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
218 219 220 221
**错误码:**

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

L
liu-ganlin 已提交
222
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
223 224 225
| -------- | -------- |
| 10200011 | The getIndexOf method cannot be bound. |

Z
zengyawen 已提交
226 227
**示例:**

228
```ts
Z
zengyawen 已提交
229 230 231 232 233 234 235 236
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);
237
let result = arrayList.getIndexOf(2);
L
liu-ganlin 已提交
238
try {
L
lengchangjing 已提交
239
  arrayList.getIndexOf.bind({}, 2)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
240 241 242
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
243 244
```

L
linhaoran 已提交
245 246
### getLastIndexOf

Z
zengyawen 已提交
247
getLastIndexOf(element: T): number
L
linhaoran 已提交
248 249 250

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

Z
zengyawen 已提交
251 252
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
253 254 255 256 257 258 259 260 261 262 263 264
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
265 266 267 268
**错误码:**

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

L
liu-ganlin 已提交
269
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
270 271 272
| -------- | -------- |
| 10200011 | The getLastIndexOf method cannot be bound. |

Z
zengyawen 已提交
273 274
**示例:**

275
```ts
Z
zengyawen 已提交
276 277 278 279 280 281 282 283
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);
284
let result = arrayList.getLastIndexOf(2);
L
liu-ganlin 已提交
285
try {
L
lengchangjing 已提交
286
  arrayList.getLastIndexOf.bind({}, 2)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
287 288 289
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
290 291
```

L
linhaoran 已提交
292 293
### removeByIndex

Z
zengyawen 已提交
294
removeByIndex(index: number): T
L
linhaoran 已提交
295 296 297

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

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

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

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

**返回值:**

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

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

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

L
liu-ganlin 已提交
316
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
317 318 319 320
| -------- | -------- |
| 10200011 | The removeByIndex method cannot be bound. |
| 10200001 | The value of parameters are out of range. |

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

323
```ts
Z
zengyawen 已提交
324 325 326 327 328 329
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(2);
arrayList.add(4);
330
let result = arrayList.removeByIndex(2);
L
liu-ganlin 已提交
331
try {
L
lengchangjing 已提交
332
  arrayList.removeByIndex.bind({}, 2)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
333 334 335 336
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
lengchangjing 已提交
337
  arrayList.removeByIndex("a"); // 测试类型异常
L
liu-ganlin 已提交
338 339 340 341
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
lengchangjing 已提交
342
  arrayList.removeByIndex(8); // 测试越界异常
L
liu-ganlin 已提交
343 344 345
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
346
```
L
linhaoran 已提交
347 348 349

### remove

Z
zengyawen 已提交
350
remove(element: T): boolean
L
linhaoran 已提交
351 352 353

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

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

Z
zengyawen 已提交
356 357 358 359 360 361 362 363 364 365 366 367
**参数:**

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

**返回值:**

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

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

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

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 380 381 382 383
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
384
let result = arrayList.remove(2);
L
liu-ganlin 已提交
385
try {
L
lengchangjing 已提交
386
  arrayList.remove.bind({}, 2)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
387 388 389
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
390
```
L
linhaoran 已提交
391 392 393

### removeByRange

Z
zengyawen 已提交
394
removeByRange(fromIndex: number, toIndex: number): void
L
linhaoran 已提交
395 396 397

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

Z
zengyawen 已提交
398 399
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
400 401 402 403 404 405 406
**参数:**

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

L
liu-ganlin 已提交
407 408 409 410
**错误码:**

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

L
liu-ganlin 已提交
411
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
412 413 414 415
| -------- | -------- |
| 10200011 | The removeByRange method cannot be bound. |
| 10200001 | The value of parameters are out of range. |

Z
zengyawen 已提交
416 417
**示例:**

418
```ts
Z
zengyawen 已提交
419 420 421 422 423 424
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.removeByRange(2, 4);
L
liu-ganlin 已提交
425
try {
L
lengchangjing 已提交
426
  arrayList.removeByRange.bind({}, 2, 4)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
427 428 429 430
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
lengchangjing 已提交
431
  arrayList.removeByRange(8, 4); // 测试越界异常
L
liu-ganlin 已提交
432 433 434
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
435 436
```

L
linhaoran 已提交
437
### replaceAllElements
438

439
replaceAllElements(callbackfn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => T,
Z
zengyawen 已提交
440 441 442 443
thisArg?: Object): void

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

Z
zengyawen 已提交
444 445
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
446 447 448 449 450 451 452 453 454 455 456
**参数:**

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

callbackfn的参数说明:

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

L
liu-ganlin 已提交
461 462 463 464
**错误码:**

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

L
liu-ganlin 已提交
465
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
466 467 468
| -------- | -------- |
| 10200011 | The replaceAllElements method cannot be bound. |

Z
zengyawen 已提交
469 470
**示例:**

471
```ts
Z
zengyawen 已提交
472 473 474 475 476
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
477
arrayList.replaceAllElements((value: number, index: number)=> {
Z
zengyawen 已提交
478 479
  return value = 2 * value;
});
480
arrayList.replaceAllElements((value: number, index: number) => {
Z
zengyawen 已提交
481 482
  return value = value - 2;
});
L
liu-ganlin 已提交
483
try {
L
lengchangjing 已提交
484
  arrayList.replaceAllElements.bind({}, (value: number, index: number)=> {
L
liu-ganlin 已提交
485
    return value = 2 * value;
L
liu-ganlin 已提交
486
  })(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
487 488 489
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
490 491
```

L
linhaoran 已提交
492
### forEach
493

494
forEach(callbackfn: (value: T, index?: number, arrlist?: ArrayList&lt;T&gt;) => void,
Z
zengyawen 已提交
495
thisArg?: Object): void
L
linhaoran 已提交
496 497 498

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

Z
zengyawen 已提交
499 500
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513
**参数:**

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

callbackfn的参数说明:

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

L
liu-ganlin 已提交
516 517 518 519
**错误码:**

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

L
liu-ganlin 已提交
520
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
521 522 523
| -------- | -------- |
| 10200011 | The forEach method cannot be bound. |

Z
zengyawen 已提交
524 525
**示例:**

526
```ts
Z
zengyawen 已提交
527 528 529 530 531 532
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.forEach((value, index) => {
L
lengchangjing 已提交
533
  console.log(`value:${value}`, index);
Z
zengyawen 已提交
534
});
L
liu-ganlin 已提交
535
try {
L
lengchangjing 已提交
536
  arrayList.forEach.bind({}, (value, index) => {
L
liu-ganlin 已提交
537
    console.log(`value:${value}`, index);
L
liu-ganlin 已提交
538
  })(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
539 540 541
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
542 543
```

L
linhaoran 已提交
544
### sort
545

Z
zengyawen 已提交
546 547 548 549
sort(comparator?: (firstValue: T, secondValue: T) => number): void

对ArrayList中的元素排序。

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

Z
zengyawen 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564
**参数:**

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

comparator的参数说明:

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

L
liu-ganlin 已提交
565 566 567 568
**错误码:**

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

L
liu-ganlin 已提交
569
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
570 571 572
| -------- | -------- |
| 10200011 | The sort method cannot be bound. |

Z
zengyawen 已提交
573 574
**示例:**

575
```ts
Z
zengyawen 已提交
576 577 578 579 580
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
581 582
arrayList.sort((a: number, b: number) => a - b);
arrayList.sort((a: number, b: number) => b - a);
Z
zengyawen 已提交
583
arrayList.sort();
L
liu-ganlin 已提交
584
try {
L
lengchangjing 已提交
585
  arrayList.sort.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
586 587 588
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
589 590
```

L
linhaoran 已提交
591
### subArrayList
592

Z
zengyawen 已提交
593 594 595 596
subArrayList(fromIndex: number, toIndex: number): ArrayList&lt;T&gt;

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

Z
zengyawen 已提交
597 598
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
599 600 601 602 603 604 605 606 607 608 609 610 611
**参数:**

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

**返回值:**

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

L
liu-ganlin 已提交
612 613 614 615
**错误码:**

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

L
liu-ganlin 已提交
616
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
617 618 619 620
| -------- | -------- |
| 10200011 | The subArrayList method cannot be bound. |
| 10200001 | The value of parameters are out of range. |

Z
zengyawen 已提交
621 622
**示例:**

623
```ts
Z
zengyawen 已提交
624 625 626 627 628
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
629 630 631
let result1 = arrayList.subArrayList(2, 4);
let result2 = arrayList.subArrayList(4, 3);
let result3 = arrayList.subArrayList(2, 6);
L
liu-ganlin 已提交
632
try {
L
lengchangjing 已提交
633
  arrayList.subArrayList.bind({}, 2, 4)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
634 635 636 637
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
try {
L
lengchangjing 已提交
638
  arrayList.subArrayList(6, 4);
L
liu-ganlin 已提交
639 640 641
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
642
```
L
linhaoran 已提交
643 644

### clear
645

Z
zengyawen 已提交
646 647 648 649
clear(): void

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

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

L
liu-ganlin 已提交
652 653 654 655
**错误码:**

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

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

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

662
```ts
Z
zengyawen 已提交
663 664 665 666 667 668
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.clear();
L
liu-ganlin 已提交
669
try {
L
lengchangjing 已提交
670
  arrayList.clear.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
671 672 673
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
674 675
```

L
linhaoran 已提交
676
### clone
677

Z
zengyawen 已提交
678 679
clone(): ArrayList&lt;T&gt; 

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

Z
zengyawen 已提交
682 683
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
684 685 686 687 688 689 690

**返回值:**

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

L
liu-ganlin 已提交
691 692 693 694
**错误码:**

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

L
liu-ganlin 已提交
695
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
696 697 698
| -------- | -------- |
| 10200011 | The clone method cannot be bound. |

Z
zengyawen 已提交
699 700
**示例:**

701
```ts
Z
zengyawen 已提交
702 703 704 705 706
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
707
let result = arrayList.clone();
L
liu-ganlin 已提交
708
try {
L
lengchangjing 已提交
709
  arrayList.clone.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
710 711 712
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
713 714
```

L
linhaoran 已提交
715
### getCapacity
716

Z
zengyawen 已提交
717
getCapacity(): number
L
linhaoran 已提交
718 719 720

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

Z
zengyawen 已提交
721 722
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
723 724 725 726 727 728
**返回值:**

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

L
liu-ganlin 已提交
729 730 731 732
**错误码:**

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

L
liu-ganlin 已提交
733
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
734 735 736
| -------- | -------- |
| 10200011 | The getCapacity method cannot be bound. |

Z
zengyawen 已提交
737 738
**示例:**

739
```ts
Z
zengyawen 已提交
740 741 742 743 744
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
745
let result = arrayList.getCapacity();
L
liu-ganlin 已提交
746
try {
L
lengchangjing 已提交
747
  arrayList.getCapacity.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
748 749 750
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
751 752
```

L
linhaoran 已提交
753
### convertToArray
754

Z
zengyawen 已提交
755 756 757 758
convertToArray(): Array&lt;T&gt;

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

Z
zengyawen 已提交
759 760
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
761 762 763 764 765 766
**返回值:**

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

L
liu-ganlin 已提交
767 768 769 770
**错误码:**

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

L
liu-ganlin 已提交
771
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
772 773 774
| -------- | -------- |
| 10200011 | The convertToArray method cannot be bound. |

Z
zengyawen 已提交
775 776
**示例:**

777
```ts
Z
zengyawen 已提交
778 779 780 781 782
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
783
let result = arrayList.convertToArray();
L
liu-ganlin 已提交
784
try {
L
lengchangjing 已提交
785
  arrayList.convertToArray.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
786 787 788
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
789 790
```

L
linhaoran 已提交
791
### isEmpty
792

Z
zengyawen 已提交
793
isEmpty(): boolean
L
linhaoran 已提交
794 795 796

判断该ArrayList是否为空。

Z
zengyawen 已提交
797 798
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
799 800 801 802 803 804
**返回值:**

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

L
liu-ganlin 已提交
805 806 807 808
**错误码:**

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

L
liu-ganlin 已提交
809
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
810 811 812
| -------- | -------- |
| 10200011 | The isEmpty method cannot be bound. |

Z
zengyawen 已提交
813 814
**示例:**

815
```ts
Z
zengyawen 已提交
816 817 818 819 820
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
821
let result = arrayList.isEmpty();
L
liu-ganlin 已提交
822
try {
L
lengchangjing 已提交
823
  arrayList.isEmpty.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
824 825 826
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
827 828
```

L
linhaoran 已提交
829
### increaseCapacityTo
830

Z
zengyawen 已提交
831
increaseCapacityTo(newCapacity: number): void
L
linhaoran 已提交
832 833 834

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

Z
zengyawen 已提交
835 836
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
837 838 839 840 841 842
**参数:**

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

L
liu-ganlin 已提交
843 844 845 846
**错误码:**

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

L
liu-ganlin 已提交
847
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
848 849 850
| -------- | -------- |
| 10200011 | The increaseCapacityTo method cannot be bound. |

Z
zengyawen 已提交
851 852
**示例:**

853
```ts
Z
zengyawen 已提交
854 855 856 857 858 859 860
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
arrayList.increaseCapacityTo(2);
arrayList.increaseCapacityTo(8);
L
liu-ganlin 已提交
861
try {
L
lengchangjing 已提交
862
  arrayList.increaseCapacityTo.bind({}, 5)(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
863 864 865
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
866 867
```

L
linhaoran 已提交
868
### trimToCurrentLength
869

Z
zengyawen 已提交
870
trimToCurrentLength(): void
L
linhaoran 已提交
871 872 873

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

Z
zengyawen 已提交
874 875
**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
876 877 878 879
**错误码:**

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

L
liu-ganlin 已提交
880
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
881 882 883
| -------- | -------- |
| 10200011 | The trimToCurrentLength method cannot be bound. |

Z
zengyawen 已提交
884 885
**示例:**

886
```ts
Z
zengyawen 已提交
887 888 889 890 891
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);
892
arrayList.trimToCurrentLength();
L
liu-ganlin 已提交
893
try {
L
lengchangjing 已提交
894
  arrayList.trimToCurrentLength.bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
895 896 897
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
898 899
```

L
linhaoran 已提交
900 901
### [Symbol.iterator]

Z
zengyawen 已提交
902 903 904 905
[Symbol.iterator]\(): IterableIterator&lt;T&gt;

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

Z
zengyawen 已提交
906 907
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
908 909 910 911 912 913
**返回值:**

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

L
liu-ganlin 已提交
914 915 916 917
**错误码:**

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

L
liu-ganlin 已提交
918
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
919 920 921
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
922 923
**示例:**

924
```ts
Z
zengyawen 已提交
925 926 927 928 929 930 931 932
let arrayList = new ArrayList();
arrayList.add(2);
arrayList.add(4);
arrayList.add(5);
arrayList.add(4);

// 使用方法一:
for (let item of arrayList) { 
L
lengchangjing 已提交
933
  console.log(`value:${item}`); 
Z
zengyawen 已提交
934 935 936 937 938 939
} 

// 使用方法二:
let iter = arrayList[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
L
lengchangjing 已提交
940
  console.log(`value:${temp}`);
Z
zengyawen 已提交
941 942
  temp = iter.next().value;
}
L
liu-ganlin 已提交
943
try {
L
lengchangjing 已提交
944
  arrayList[Symbol.iterator].bind({})(); // bind为JS标准内置对象Function的方法,用于改变this的指向,测试异常捕获
L
liu-ganlin 已提交
945 946 947
} catch(err) {
  console.log(`${err.code} - ${err.name} - ${err.message}`);
}
Z
zengyawen 已提交
948
```