当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Queue::peek()用法及代码示例



Ds\Queue::peek() 函数可以在队列的前面返回一个值。

用法

public mixed Ds\Queue::peek( void )

Ds\Queue::peek() 函数可以在队列的前面返回一个值,但不删除它。

Ds\Queue::peek() 函数没有任何参数。

Ds\Queue::peek() 函数可以在为空时抛出 UnderflowException。

示例

<?php  
   $queue = new \Ds\Queue();  
   $queue->push("Tutorials"); 
   $queue->push("Point"); 
   $queue->push("India"); 
  
   echo "The queue is:\n"; 
   print_r($queue); 
  
   echo "\n The element at front is:"; 
   print_r($queue->peek()); 
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds\Queue::peek() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。