PHP Ds\Queue isEmpty()函数
PHP的Ds\Queue::isEmpty()函数用于判断特定 Queue 实例是否为空。如果队列为空,则返回 True,否则返回 False。
句法:
bool public Ds\Queue::isEmpty ( void )
参数:该函数不接受任何参数。
返回值:此函数根据此队列是否为空返回一个布尔值。如果队列为空,则返回 True,否则返回 False。
下面的程序说明了PHP的Ds\Queue::isEmpty()函数:
方案一:
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)
方案二:
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 /手动/ EN / DS-priorityqueue.isempty。 PHP