📜  PHP | Ds\Stack isEmpty()函数

📅  最后修改于: 2022-05-13 01:57:39.883000             🧑  作者: Mango

PHP | Ds\Stack isEmpty()函数

PHP Ds\Stack 类的Ds\Stack::isEmpty()函数用于检查 Stack 是否为空。此方法返回一个布尔值,如果堆栈为空,则返回 True,否则返回 False。

语法

bool public Ds\Stack::isEmpty ( void )

参数:该函数不接受任何参数。
返回值:如果堆栈为空,则此函数返回布尔值 True,否则返回 False。

下面的程序说明了Ds\Stack::isEmpty()函数:

程序一



PHP
isEmpty());
 
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
 
// Check if stack is Empty again
var_dump($stack->isEmpty());
 
?>


PHP
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)

方案二

PHP

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 /手动/ EN / DS-stack.isempty。 PHP