PHP Ds \ Stack类的Ds \ Stack::isEmpty()函数用于检查Stack是否为空。此方法返回一个布尔值,如果Stack为空,则返回True,否则返回False。
用法:
bool public Ds\Stack::isEmpty ( void )
参数:此函数不接受任何参数。
返回值:如果堆栈为空,则此函数返回布尔值True,否则返回False。
以下示例程序旨在说明Ds \ Stack::isEmpty()函数:
程序1::
<?php
// PHP program to illustarte the
// isEmpty() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Check if stack is Empty
var_dump($stack->isEmpty());
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Check if stack is Empty again
var_dump($stack->isEmpty());
?>
输出:
bool(true) bool(false)
程序2::
<?php
// PHP program to illustarte the
// isEmpty() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Check if stack is Empty
var_dump($stack->isEmpty());
// Pushing Mixed value elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Check if stack is Empty again
var_dump($stack->isEmpty());
?>
输出:
bool(true) bool(false)
参考:http://php.net/manual/en/ds-stack.isempty.php
相关用法
- PHP Ds\Map isEmpty()用法及代码示例
- PHP Ds\Set isEmpty()用法及代码示例
- PHP Ds\Deque isEmpty()用法及代码示例
- PHP Ds\PriorityQueue isEmpty()用法及代码示例
- PHP Ds\Vector isEmpty()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP SplDoublyLinkedList isEmpty()用法及代码示例
- PHP Ds\Collection isEmpty()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- PHP Ds\Set first()用法及代码示例
- PHP dir()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- PHP Ds\Set last()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Stack isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。