PHP Conference Japan 2024

Ds\Deque::first

(PECL ds >= 1.0.0)

Ds\Deque::first返回双端队列中的第一个值

描述

public Ds\Deque::first(): 混合

返回双端队列中的第一个值。

参数

此函数没有参数。

返回值

双端队列中的第一个值。

错误/异常

如果为空,则为 UnderflowException

示例

示例 #1 Ds\Deque::first() 示例

<?php
$deque
= new \Ds\Deque([1, 2, 3]);
var_dump($deque->first());
?>

以上示例将输出类似以下内容

int(1)
添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top