Parle\Stack 类

(PECL parle >= 0.7.0)

简介

Parle\Stack 是一个后进先出栈。元素只从一端插入和移除。

类概要

class Parle\Stack {
/* 属性 */
public bool $empty = true;
public int $size = 0;
public mixed $top;
/* 方法 */
public pop(): void
public push(mixed $item): void
}

属性

empty

栈是否为空,只读。

size

栈大小,只读。

top

栈顶元素。

目录

添加注释

用户贡献的注释

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