命名空间
变体
操作

std::forward_list<T,Allocator>::front

来自 cppreference.com
< cpp‎ | 容器‎ | 单向链表
 
 
 
 
reference front();
(1) (自 C++11)
const_reference front() const;
(2) (自 C++11)

返回对容器中第一个元素的引用。

在空容器上调用 front 会导致未定义的行为。

内容

[编辑] 参数

(无)

[编辑] 返回值

对第一个元素的引用。

[编辑] 复杂度

常数。

[编辑] 备注

对于容器 c,表达式 c.front() 等效于 *c.begin().

[编辑] 示例

以下代码使用 front 显示 std::forward_list<char> 的第一个元素

#include <cassert>
#include <forward_list>
 
int main()
{
    std::forward_list<char> letters{'a', 'b', 'c', 'd'};
    assert(letters.front() == 'a');
}

[编辑] 参见

返回指向开始之前元素的迭代器
(公共成员函数) [编辑]
返回指向开始的迭代器
(公共成员函数) [编辑]