js-apis-stack.md 5.1 KB
Newer Older
L
linhaoran 已提交
1 2 3 4 5
# 线性容器Stack

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

6 7 8 9
Stack基于数组的数据结构实现,特点是先进后出,只能在一端进行数据的插入和删除。

Stack和[Queue](js-apis-queue.md)相比,Queue基于循环队列实现,只能在一端删除,另一端插入,而Stack都在一端操作。

Z
zengyawen 已提交
10
**推荐使用场景:** 一般符合先进后出的场景可以使用Stack。
L
linhaoran 已提交
11 12 13

## 导入模块

14
```ts
15
import Stack from '@ohos.util.Stack';  
L
linhaoran 已提交
16 17 18 19 20 21 22 23 24
```




## Stack

### 属性

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

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


### constructor

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

Stack的构造函数。

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

Z
zengyawen 已提交
40
**示例:**
L
linhaoran 已提交
41

42
```ts
Z
zengyawen 已提交
43 44
let stack = new Stack();
```
L
linhaoran 已提交
45 46 47 48


### push

Z
zengyawen 已提交
49
push(item: T): T
L
linhaoran 已提交
50

Z
zengyawen 已提交
51
在栈顶插入元素,并返回该元素。
L
linhaoran 已提交
52

Z
zengyawen 已提交
53 54
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
55
**参数:**
L
linhaoran 已提交
56

Z
zengyawen 已提交
57 58 59
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| item | T | 是 | 添加进去的元素。 |
L
linhaoran 已提交
60

Z
zengyawen 已提交
61 62 63 64 65 66 67 68
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| T | 返回被添加进去的元素。 |

**示例:**

69
```ts
Z
zengyawen 已提交
70
let stack = new Stack();
71 72
let result = stack.push("a");
let result1 = stack.push(1);
Z
zengyawen 已提交
73 74 75
let b = [1, 2, 3];
stack.push(b);
let c = {name : "lala", age : "13"};
76
let result3 = stack.push(c);
Z
zengyawen 已提交
77
```
L
linhaoran 已提交
78 79 80

### pop

Z
zengyawen 已提交
81
pop(): T
L
linhaoran 已提交
82 83 84

删除栈顶元素并返回该删除元素。

Z
zengyawen 已提交
85 86
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
87 88 89 90 91 92 93 94
**返回值:**

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

**示例:**

95
```ts
Z
zengyawen 已提交
96 97 98 99 100 101
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(2);
stack.push(4);
102
let result = stack.pop();
Z
zengyawen 已提交
103
```
L
linhaoran 已提交
104 105 106

### peek

Z
zengyawen 已提交
107
peek(): T
L
linhaoran 已提交
108 109 110

获取并返回栈顶元素。

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

Z
zengyawen 已提交
113 114 115 116 117 118 119 120
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| T | 返回栈顶元素。 |

**示例:**

121
```ts
Z
zengyawen 已提交
122 123 124 125 126
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(2);
127
let result = stack.peek();
Z
zengyawen 已提交
128 129
```

L
linhaoran 已提交
130 131
### locate

Z
zengyawen 已提交
132
locate(element: T): number
L
linhaoran 已提交
133 134 135

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

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

Z
zengyawen 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151
**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 找到就返回下标值,查找失败返回-1。 |

**示例:**

152
```ts
Z
zengyawen 已提交
153 154 155 156 157
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(2);
158
let result = stack.locate(2);
Z
zengyawen 已提交
159
```
L
linhaoran 已提交
160 161

### forEach
162

L
linhaoran 已提交
163
forEach(callbackfn: (value: T, index?: number, stack?: Stack<T>) => void,
Z
zengyawen 已提交
164
thisArg?: Object): void
L
linhaoran 已提交
165 166 167

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

Z
zengyawen 已提交
168 169
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
**参数:**

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

callbackfn的参数说明:

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| stack | Stack<T> | 否 | 当前调用forEach方法的实例对象。 |

**示例:**

187
```ts
Z
zengyawen 已提交
188 189 190 191 192 193
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(4);
stack.forEach((value, index) => {
194
 console.log("value:" + value, index);
Z
zengyawen 已提交
195 196 197
});
```

L
linhaoran 已提交
198
### isEmpty
199

Z
zengyawen 已提交
200
isEmpty(): boolean
L
linhaoran 已提交
201 202 203

判断该栈是否为空。

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

Z
zengyawen 已提交
206 207 208 209 210 211 212 213
**返回值:**

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

**示例:**

214
```ts
Z
zengyawen 已提交
215 216 217 218 219
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(4);
220
let result = stack.isEmpty();
Z
zengyawen 已提交
221
```
L
linhaoran 已提交
222 223 224

### [Symbol.iterator]

Z
zengyawen 已提交
225
[Symbol.iterator]\(): IterableIterator<T>
L
linhaoran 已提交
226 227 228

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

Z
zengyawen 已提交
229 230
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
231
**返回值:**
L
linhaoran 已提交
232

Z
zengyawen 已提交
233 234 235 236 237
| 类型 | 说明 |
| -------- | -------- |
| IterableIterator<T> | 返回一个迭代器。 |

**示例:**
238
```ts
Z
zengyawen 已提交
239 240 241 242 243 244 245 246
let stack = new Stack();
stack.push(2);
stack.push(4);
stack.push(5);
stack.push(4);

// 使用方法一:
for (let item of stack) { 
247
  console.log("value:" + item); 
Z
zengyawen 已提交
248 249 250 251 252 253
}

// 使用方法二:
let iter = stack[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
254
  console.log("value:" + temp);
Z
zengyawen 已提交
255 256 257
  temp = iter.next().value;
}
```