📜  PHP | Ds\Deque last()函数

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

PHP | Ds\Deque last()函数

Ds\Deque::last()函数是PHP中的一个内置函数,用于在 Deque 不为空时返回 Deque 的最后一个元素。

句法:

public Ds\Deque::last( void ) : mixed

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

返回值:此函数返回双端队列中的最后一个元素,如果它不为空。

异常:如果 Deque 为空,此函数将抛出UnderflowException

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

方案一:

last());
  
?>
输出:
Elements in the deque
object(Ds\Deque)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}

Last element in the deque: int(6)

方案二:

last());
  
?>
输出:
Elements in the deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)

Last element in the deque: geeks

参考: http: PHP。 PHP