std::array::front
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
reference front(); |
(C++11 起) | |
const_reference front() const; |
(C++11 起) | |
返回的第一个元素在容器中.
原文:
Returns a reference to the first element in the container.
在一个空容器中调用
front
是不确定的.....原文:
Calling
front
on an empty container is undefined.目录 |
[编辑] 参数
(无)
[编辑] 返回值
参考的第一个元素
[编辑] 复杂性
常数
[编辑] 注释
对于一个容器
c
,表达c.front()相当于*c.begin().原文:
For a container
c
, the expression c.front() is equivalent to *c.begin().[编辑] 为例
下面的代码使用
front
显示的第一个元素的std::array<char>
原文:
The following code uses
front
to display the first element of a std::array<char>:
#include <array> #include <iostream> int main() { std::array<char> letters {'o', 'm', 'g', 'w', 't', 'f'}; if (!letters.empty()) { std::cout << "The first character is: " << letters.front() << '\n'; } }
输出:
The first character is o
See also
访问最后一个元素 (公共成员函数) |