PHP Ds Deque first() 函数
Ds\Deque::first() 函数可以返回双向队列中的第一个值。
语法
public mixed Ds\Deque::first( void )
Ds\Deque::first()函数没有任何参数。这个函数可以返回双端队列中的第一个值。
Ds\Deque::first()函数如果为空,可能会抛出UnderflowException。
示例1
<?php
deque = new \Ds\Deque([10, 20, 8, 40, 50, 5]); echo("The elements in the deque: \n"); print_r(deque);
echo("\n The first element in the deque:");
var_dump($deque->first());
?>
示例2
<?php
deque = new \Ds\Deque(["Tutorials", "Point", "Tutorix"]); echo("The elements in the deque: \n"); print_r(deque);
echo("\n The first element in the deque:");
var_dump($deque->first());
?>