PHP中Ds \ PriorityQueue类的isEmpty()函数用于确定特定的PriorityQueue实例是否为空。如果PriorityQueue为空,则返回True,否则返回False。
用法:
bool isEmpty( )
参数:此函数不接受任何参数。
返回值:此函数根据此PriorityQueue是否为空返回布尔值。如果PriorityQueue为空,则返回True,否则返回False。
以下示例程序旨在说明上述方法:
程序1::
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Initially PriorityQueue is Empty
var_dump($pq->isEmpty());
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
// Check again if the PriorityQueue
// is Empty
var_dump($pq->isEmpty());
?>
输出:
bool(true) bool(false)
程序2:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Initially PriorityQueue is Empty
var_dump($pq->isEmpty());
// Add elements to the PriorityQueue
$pq->push("Geeks", 1);
$pq->push("for", 2);
$pq->push("Geeks", 3);
// Check again if the PriorityQueue
// is Empty
var_dump($pq->isEmpty());
?>
输出:
bool(true) bool(false)
参考:http://php.net/manual/en/ds-priorityqueue.isempty.php
相关用法
- PHP Ds\Set isEmpty()用法及代码示例
- PHP Ds\Map isEmpty()用法及代码示例
- PHP Ds\Collection isEmpty()用法及代码示例
- PHP Ds\Deque isEmpty()用法及代码示例
- PHP Ds\Vector isEmpty()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP Ds\Stack isEmpty()用法及代码示例
- PHP SplDoublyLinkedList isEmpty()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- PHP each()用法及代码示例
- PHP end()用法及代码示例
- PHP next()用法及代码示例
- PHP min( )用法及代码示例
- PHP max( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\PriorityQueue isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。