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


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


PHP中的Ds \ Queue::isEmpty()函数用于确定特定的Queue实例是否为空。如果队列为空,则返回True,否则返回False。

用法:

bool public Ds\Queue::isEmpty ( void )

参数:该函数不接受任何参数。


返回值:此函数根据此Queue是否为空返回一个布尔值。如果队列为空,则返回True,否则返回False。

以下示例程序旨在说明PHP中的Ds \ Queue::isEmpty()函数:

程序1:

<?php  
  
// Declare new Queue  
$q = new \Ds\Queue();  
  
// Initially Queue is Empty 
var_dump($q->isEmpty()); 
  
// Add elements to the Queue  
$q->push("One"); 
$q->push("Two"); 
$q->push("Three"); 
  
// Check again if the Queue  
// is Empty 
var_dump($q->isEmpty()); 
  
?> 
输出:
bool(true)
bool(false)

程序2:

<?php  
  
// Declare new Queue  
$q = new \Ds\Queue();  
  
// Initially Queue is Empty 
var_dump($q->isEmpty()); 
  
// Add elements to the Queue  
$q->push("Geeks"); 
$q->push("for"); 
$q->push("Geeks"); 
  
// Check again if the Queue  
// is Empty 
var_dump($q->isEmpty()); 
  
?> 
输出:
bool(true)
bool(false)

参考:http://php.net/manual/en/ds-priorityqueue.isempty.php



相关用法


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