std::list<T,Allocator>::front
来自 cppreference.com
reference front(); |
(1) | |
const_reference front() const; |
(2) | |
返回对容器中第一个元素的引用。
对空容器调用 `front` 会导致未定义行为。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
对第一个元素的引用。
[编辑] 复杂度
常数。
[编辑] 注释
对于容器 `c`,表达式 c.front() 等价于 *c.begin().
[编辑] 示例
以下代码使用 `front` 显示 std::list<char> 的第一个元素。
运行此代码
[编辑] 另请参见
访问最后一个元素 (公有成员函数) | |
(C++11) |
返回指向结尾的反向迭代器 (公有成员函数) |
(C++11) |
返回指向开头的迭代器 (公有成员函数) |