PHP中的Ds \ Queue::clear()函数用于清除Queue实例中的所有元素。此函数仅清除实例而不删除它。
用法:
void public Ds\PriorityQueue::clear ( void )
参数:该函数不接受任何参数。
返回值:此函数不返回任何值。
以下示例程序旨在说明PHP中的Ds \ Queue::clear()函数:
程序1:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("One");
$q->push("Two");
$q->push("Three");
echo "Initial Queue:\n";
// Display the Queue
print_r($q);
// clear the Queue
$q->clear();
echo "\nQueue after clearing:\n";
print_r($q);
?>
输出:
Initial Queue: Ds\Queue Object ( [0] => One [1] => Two [2] => Three ) Queue after clearing: Ds\Queue Object ( )
程序2:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("Geeks");
$q->push("for");
$q->push("Geeks");
echo "Initial Queue:\n";
// Display the Queue
print_r($q);
// clear the Queue
$q->clear();
echo "\nQueue after clearing:\n";
print_r($q);
?>
输出:
Initial Queue: Ds\Queue Object ( [0] => Geeks [1] => for [2] => Geeks ) Queue after clearing: Ds\Queue Object ( )
参考: http://php.net/manual/en/ds-queue.clear.php
相关用法
- PHP Ds\Set clear()用法及代码示例
- PHP DS\Map clear()用法及代码示例
- PHP ImagickDraw clear()用法及代码示例
- PHP Imagick clear()用法及代码示例
- PHP Ds\Stack clear()用法及代码示例
- PHP Ds\Vector clear()用法及代码示例
- PHP Ds\Pair clear()用法及代码示例
- PHP Gmagick clear()用法及代码示例
- PHP Ds\PriorityQueue clear()用法及代码示例
- PHP Ds\Deque clear()用法及代码示例
- PHP Ds\Collection clear()用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP exp()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Queue clear() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。