在线文档教程
PHP
数据结构 | Data Structures

Ds\Queue::pop

Ds\Queue::pop

(PECL ds >= 1.0.0)

Ds \ Queue :: pop - 删除并返回队列前面的值。

Description

public mixed Ds\Queue::pop ( void )

删除并返回队列前面的值。

Parameters

该功能没有参数。

Return Values

删除的值位于队列的前面。

Errors/Exceptions

UnderflowException如果为空。

Examples

Example #1 Ds\Queue::pop() example

<?php $queue = new \Ds\Queue( $queue->push("a" $queue->push("b" $queue->push("c" var_dump($queue->pop() var_dump($queue->pop() var_dump($queue->pop() ?>

上面的例子会输出类似于:

string(1) "a" string(1) "b" string(1) "c"

← Ds\Queue::peek

Ds\Queue::push →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。