📜  PHP | Ds\Deque isEmpty()函数

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

PHP | Ds\Deque isEmpty()函数

Ds\Deque::isEmpty()函数是PHP中的一个内置函数,用于检查 Deque 是否为空。

句法:

public Ds\Deque::isEmpty( void ) : bool

参数:此函数不接受任何参数。

返回值:如果 Deque 为空,此函数返回 true,否则返回 false。

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

方案一:

isEmpty());
  
?>
输出:
Original Deque
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)
bool(false)

方案二:

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