Ds \ Deque::isEmpty()函数是PHP中的内置函数,用于检查Deque是否为空。
用法:
public Ds\Deque::isEmpty( void ):bool
参数:该函数不接受任何参数。
返回值:如果双端队列为空,则此函数返回true,否则返回false。
以下示例程序旨在说明PHP中的Ds \ Deque::isEmpty()函数:
程序1:
<?php
// Declare a deque
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo("Original Deque\n");
// Display the Deque elements
print_r($deck);
// Use isEmpty() function to check
// the deque is empty or not
var_dump($deck->isEmpty());
?>
输出:
Original Deque Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) bool(false)
程序2:
<?php
// Declare a deque
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo("Original Deque\n");
// Display the Deque elements
print_r($deck);
// Clearing the Deque
$deck->clear();
// Use isEmpty() function to check
// the deque is empty or not
var_dump($deck->isEmpty());
?>
输出:
Original Deque Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) bool(true)
参考: http://php.net/manual/en/ds-deque.isempty.php
相关用法
- PHP Ds\Set isEmpty()用法及代码示例
- PHP Ds\Map isEmpty()用法及代码示例
- PHP Ds\Collection isEmpty()用法及代码示例
- PHP Ds\Stack isEmpty()用法及代码示例
- PHP SplDoublyLinkedList isEmpty()用法及代码示例
- PHP Ds\PriorityQueue isEmpty()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP Ds\Vector isEmpty()用法及代码示例
- Underscore.js _.isEmpty()用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.mean()用法及代码示例
- PHP pos()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | Ds\Deque isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。