PHP中的Ds \ Queue::peek()函数用于获取出现在队列前面的值。此函数仅返回存在于Queue实例前端的元素,而无需实际删除它。
用法:
mixed public Ds\Queue::peek ( void )
参数:该函数不接受任何参数。
返回值:此函数返回此队列前面的值。函数的返回类型是混合的,并且取决于存储在队列中的值的类型。
异常:如果Queue为空,则此函数引发UnderflowException。
以下示例程序旨在说明PHP中的Ds \ Queue::peek()函数
程序1:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("One");
$q->push("Two");
$q->push("Three");
echo "Queue is:\n";
print_r($q);
// Get element at the front
echo "\nElement at front is:";
print_r($q->peek());
?>
输出:
Queue is: Ds\Queue Object ( [0] => One [1] => Two [2] => Three ) Element at front is:One
程序2:
<?php
// Declare new Queue
$q = new \Ds\Queue ();
echo "Queue is:\n";
print_r($q);
// Get element at the front
echo "\nElement at front is:";
print_r($q->peek());
?>
输出:
PHP Fatal error: Uncaught UnderflowException
参考: http://php.net/manual/en/ds-priorityqueue.peek.php
相关用法
- PHP Ds\PriorityQueue peek()用法及代码示例
- PHP Ds\Stack peek()用法及代码示例
- PHP pi( )用法及代码示例
- PHP pos()用法及代码示例
- PHP end()用法及代码示例
- PHP key()用法及代码示例
- PHP dir()用法及代码示例
- PHP max( )用法及代码示例
- PHP min( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP pow( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Queue peek() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。