Stack 类

(PECL ds >= 1.0.0)

简介

Stack 是一个“后进先出”或“LIFO”集合,它只允许访问结构顶部的值,并以这种顺序进行迭代,并且具有破坏性。

在内部使用 Ds\Vector

类概要

class Ds\Stack implements Ds\Collection, ArrayAccess {
/* 方法 */
public allocate(int $capacity): void
public capacity(): int
public clear(): void
public copy(): Ds\Stack
public isEmpty(): bool
public peek(): mixed
public pop(): mixed
public push(mixed ...$values): void
public toArray(): array
}

变更日志

版本 描述
PECL ds 1.3.0 该类现在实现了 ArrayAccess.

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top