js-apis-queue.md 5.6 KB
Newer Older
L
linhaoran 已提交
1 2 3 4 5
# 线性容器Queue

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

6 7 8 9 10
Queue的特点是先进先出,在尾部增加元素,在头部删除元素。根据循环队列的数据结构实现。

Queue和[Deque](js-apis-deque.md)相比,Queue只能在一端删除一端增加,Deque可以两端增删。

**推荐使用场景:** 一般符合先进先出的场景可以使用Queue。
L
linhaoran 已提交
11

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

L
linhaoran 已提交
15 16
## 导入模块

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


## Queue

### 属性

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

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


### constructor

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

Queue的构造函数。

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

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

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

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

Z
zengyawen 已提交
49
**示例:**
L
linhaoran 已提交
50

51
```ts
Z
zengyawen 已提交
52 53
let queue = new Queue();
```
L
linhaoran 已提交
54 55 56 57


### add

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

在队列尾部插入元素。

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

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

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| element | T | 是 | 添加进去的元素。 |

**返回值:**

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

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

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

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

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

86
```ts
Z
zengyawen 已提交
87
let queue = new Queue();
88 89
let result = queue.add("a");
let result1 = queue.add(1);
Z
zengyawen 已提交
90
let b = [1, 2, 3];
L
liu-ganlin 已提交
91
let result2 = queue.add(b);
L
lengchangjing 已提交
92
let c = {name : "Dylon", age : "13"};
93
let result3 = queue.add(c);
Z
zengyawen 已提交
94
```
L
linhaoran 已提交
95 96 97 98 99 100 101

### pop

pop(): T

删除头元素并返回该删除元素。

Z
zengyawen 已提交
102 103
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
104 105 106 107 108 109
**返回值:**

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

L
liu-ganlin 已提交
110 111 112 113
**错误码:**

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

L
liu-ganlin 已提交
114
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
115 116 117
| -------- | -------- |
| 10200011 | The pop method cannot be bound. |

Z
zengyawen 已提交
118 119
**示例:**

120
```ts
Z
zengyawen 已提交
121 122 123 124 125 126
let queue = new Queue();
queue.add(2);
queue.add(4);
queue.add(5);
queue.add(2);
queue.add(4);
127
let result = queue.pop();
Z
zengyawen 已提交
128
```
L
linhaoran 已提交
129 130 131

### getFirst

Z
zengyawen 已提交
132
getFirst(): T
L
linhaoran 已提交
133 134 135

获取队列的头元素。

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

L
liu-ganlin 已提交
138
**返回值:**
Z
zengyawen 已提交
139 140 141 142 143

| 类型 | 说明 |
| -------- | -------- |
| T | 返回获取的元素。 |

L
liu-ganlin 已提交
144 145 146 147
**错误码:**

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

L
liu-ganlin 已提交
148
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
149 150 151
| -------- | -------- |
| 10200011 | The getFirst method cannot be bound. |

Z
zengyawen 已提交
152 153
**示例:**

154
```ts
Z
zengyawen 已提交
155 156 157 158 159
let queue = new Queue();
queue.add(2);
queue.add(4);
queue.add(5);
queue.add(2);
160
let result = queue.getFirst();
Z
zengyawen 已提交
161
```
L
linhaoran 已提交
162 163

### forEach
164

165
forEach(callbackFn: (value: T, index?: number, Queue?: Queue&lt;T&gt;) => void,
Z
zengyawen 已提交
166
thisArg?: Object): void
L
linhaoran 已提交
167 168 169

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

Z
zengyawen 已提交
170 171
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
172 173 174 175
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
176
| callbackFn | function | 是 | 回调函数。 |
Z
zengyawen 已提交
177 178 179 180 181 182
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |

callbackfn的参数说明:

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

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

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

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

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

197
```ts
Z
zengyawen 已提交
198 199 200 201 202 203
let queue = new Queue();
queue.add(2);
queue.add(4);
queue.add(5);
queue.add(4);
queue.forEach((value, index) => {
204
  console.log("value:" + value, index);
Z
zengyawen 已提交
205 206
});
```
L
linhaoran 已提交
207 208 209

### [Symbol.iterator]

Z
zengyawen 已提交
210
[Symbol.iterator]\(): IterableIterator&lt;T&gt;
L
linhaoran 已提交
211 212 213

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

Z
zengyawen 已提交
214 215
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
216 217 218 219
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
220
| IterableIterator&lt;T&gt; | 返回一个迭代器。 |
L
linhaoran 已提交
221

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

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

L
liu-ganlin 已提交
226
| 错误码ID | 错误信息 |
L
liu-ganlin 已提交
227 228 229
| -------- | -------- |
| 10200011 | The Symbol.iterator method cannot be bound. |

Z
zengyawen 已提交
230
**示例:**
231
```ts
Z
zengyawen 已提交
232 233 234 235 236 237 238 239
let queue = new Queue();
queue.add(2);
queue.add(4);
queue.add(5);
queue.add(4);

// 使用方法一:
for (let item of queue) { 
240
  console.log("value:" + item); 
Z
zengyawen 已提交
241 242 243 244 245 246
}

// 使用方法二:
let iter = queue[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
247
  console.log("value:" + temp);
Z
zengyawen 已提交
248 249 250
  temp = iter.next().value;
}
```