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

Ds\Queue::peek

Ds\Queue::peek

(PECL ds >= 1.0.0)

Ds \ Queue :: peek - 返回队列前面的值。

Description

public mixed Ds\Queue::peek ( void )

返回队列前面的值,但不会将其删除。

Parameters

该功能没有参数。

Return Values

队列前面的值。

Errors/Exceptions

UnderflowException如果为空。

Examples

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

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

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

string(1) "a"

← Ds\Queue::jsonSerialize

Ds\Queue::pop →

© 1997–2017 The PHP Documentation Group

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