API Reference Document
« SplStack::setIteratorMode
SplQueue::__construct »
PHP Manual
数据结构
The SplQueue class
The SplQueue class
(PHP 5 >= 5.3.0, PHP 7)
简介
SplQueue 类通过使用一个双向链表来提供队列的主要功能。
类摘要
SplQueue
extends
SplDoublyLinkedList
implements
Iterator
,
ArrayAccess
,
Countable
{
/* 方法 */
__construct
(
void
)
dequeue
(
void
) :
mixed
enqueue
(
mixed
$value
) :
void
setIteratorMode
(
int
$mode
) :
void
/* 继承的方法 */
public
SplDoublyLinkedList::add
(
mixed
$index
,
mixed
$newval
) :
void
public
SplDoublyLinkedList::bottom
(
void
) :
mixed
public
SplDoublyLinkedList::count
(
void
) :
int
public
SplDoublyLinkedList::current
(
void
) :
mixed
public
SplDoublyLinkedList::getIteratorMode
(
void
) :
int
public
SplDoublyLinkedList::isEmpty
(
void
) :
bool
public
SplDoublyLinkedList::key
(
void
) :
mixed
public
SplDoublyLinkedList::next
(
void
) :
void
public
SplDoublyLinkedList::offsetExists
(
mixed
$index
) :
bool
public
SplDoublyLinkedList::offsetGet
(
mixed
$index
) :
mixed
public
SplDoublyLinkedList::offsetSet
(
mixed
$index
,
mixed
$newval
) :
void
public
SplDoublyLinkedList::offsetUnset
(
mixed
$index
) :
void
public
SplDoublyLinkedList::pop
(
void
) :
mixed
public
SplDoublyLinkedList::prev
(
void
) :
void
public
SplDoublyLinkedList::push
(
mixed
$value
) :
void
public
SplDoublyLinkedList::rewind
(
void
) :
void
public
SplDoublyLinkedList::serialize
(
void
) :
string
public
SplDoublyLinkedList::setIteratorMode
(
int
$mode
) :
void
public
SplDoublyLinkedList::shift
(
void
) :
mixed
public
SplDoublyLinkedList::top
(
void
) :
mixed
public
SplDoublyLinkedList::unserialize
(
string
$serialized
) :
void
public
SplDoublyLinkedList::unshift
(
mixed
$value
) :
void
public
SplDoublyLinkedList::valid
(
void
) :
bool
}
Table of Contents
SplQueue::__construct
— Constructs a new queue implemented using a doubly linked list
SplQueue::dequeue
— Dequeues a node from the queue
SplQueue::enqueue
— Adds an element to the queue
SplQueue::setIteratorMode
— Sets the mode of iteration