Php/docs/class.parle-stack

来自菜鸟教程
跳转至:导航、​搜索

(PECL parle >= 0.7.0)

简介

Parle\Stack is a LIFO stack. The elements are inserted and removed only from one end.


类摘要


Parle\Stack {

/* 属性 */

public bool $empty = true

public int $size = 0

public mixed $top

/* 方法 */

public pop ( ) : void

public push ( mixed $item ) : void

}

属性

empty
Whether the stack is empty, readonly.
size
Stack size, readonly.
top
Element on the top of the stack.


Table of Contents