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
相關用法
- PHP Ds\Set isEmpty()用法及代碼示例
- PHP Ds\Map isEmpty()用法及代碼示例
- PHP Ds\Collection isEmpty()用法及代碼示例
- PHP Ds\Deque isEmpty()用法及代碼示例
- PHP Ds\Vector isEmpty()用法及代碼示例
- PHP Ds\PriorityQueue 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\Queue isEmpty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。