Php/docs/class.splqueue

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

(PHP 5 >= 5.3.0, PHP 7)

简介

SplQueue 类通过使用一个双向链表来提供队列的主要功能。


类摘要


SplQueue extends SplDoublyLinkedList implements Iterator , ArrayAccess , Countable {

/* 方法 */

dequeue ( ) : mixed

enqueue ( mixed $value ) : void

setIteratorMode ( int $mode ) : void

/* 继承的方法 */

public SplDoublyLinkedList::add ( mixed $index , mixed $newval ) : void

public SplDoublyLinkedList::count ( ) : int

public SplDoublyLinkedList::isEmpty ( ) : bool

public SplDoublyLinkedList::next ( ) : void

public SplDoublyLinkedList::offsetExists ( mixed $index ) : bool

public SplDoublyLinkedList::offsetSet ( mixed $index , mixed $newval ) : void

public SplDoublyLinkedList::offsetUnset ( mixed $index ) : void

public SplDoublyLinkedList::prev ( ) : void

public SplDoublyLinkedList::push ( mixed $value ) : void

public SplDoublyLinkedList::rewind ( ) : void

public SplDoublyLinkedList::serialize ( ) : string

public SplDoublyLinkedList::setIteratorMode ( int $mode ) : void

public SplDoublyLinkedList::unserialize ( string $serialized ) : void

public SplDoublyLinkedList::unshift ( mixed $value ) : void

public SplDoublyLinkedList::valid ( ) : bool

}

Table of Contents