PHP中的Ds \ PriorityQueue::clear()函數用於清除PriorityQueue實例中的所有元素。此函數僅清除實例而不刪除它。
用法:
void public Ds\PriorityQueue::clear ( void )
參數:該函數不接受任何參數。
返回值:此函數不返回任何值。
以下示例程序旨在說明PHP中的Ds \ PriorityQueue::clear()函數:
程序1:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
echo "Initial PriorityQueue:\n";
// Display the PriorityQueue
print_r($pq);
// clear the PriorityQueue
$pq->clear();
echo "\nPriorityQueue after clearing:\n";
print_r($pq);
?>
輸出:
Initial PriorityQueue: Ds\PriorityQueue Object ( [0] => Three [1] => Two [2] => One ) PriorityQueue after clearing: Ds\PriorityQueue Object ( )
程序2:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("Geeks", 10);
$pq->push("for", 20);
$pq->push("Geeks", 30);
echo "Initial PriorityQueue:\n";
// Display the PriorityQueue
print_r($pq);
// clear the PriorityQueue
$pq->clear();
echo "\nPriorityQueue after clearing:\n";
print_r($pq);
?>
輸出:
Initial PriorityQueue: Ds\PriorityQueue Object ( [0] => Geeks [1] => for [2] => Geeks ) PriorityQueue after clearing: Ds\PriorityQueue Object ( )
參考: http://php.net/manual/en/ds-priorityqueue.clear.php
相關用法
- PHP DS\Map clear()用法及代碼示例
- PHP Ds\Set clear()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
- PHP Ds\Vector clear()用法及代碼示例
- PHP Ds\Deque clear()用法及代碼示例
- PHP ImagickDraw clear()用法及代碼示例
- PHP Ds\Pair clear()用法及代碼示例
- PHP Ds\Stack clear()用法及代碼示例
- PHP Ds\Queue clear()用法及代碼示例
- PHP Gmagick clear()用法及代碼示例
- PHP Ds\Collection clear()用法及代碼示例
- PHP each()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP cos( )用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue clear() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。