當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


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



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\Queue peek() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。