std::array::operator[]
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
reference operator[]( size_type pos ); |
(C++11 起) | |
const_reference operator[]( size_type pos ) const; |
(C++11 起) | |
返回一个引用的元素在指定的位置
pos
。没有执行边界检查.原文:
Returns a reference to the element at specified location
pos
. No bounds checking is performed.目录 |
[编辑] 参数
pos | - | 该元素的位置返回
|
[编辑] 返回值
参考所需的元素
[编辑] 复杂性
常数
[编辑] 为例
下面的代码使用
operator[]
读取和写入到std::array<int>
原文:
The following code uses
operator[]
read from and write to a std::array<int>:
#include <array> #include <iostream> int main() { std::array<int> numbers {2, 4, 6, 8}; std::cout << "Second element: " << numbers[1] << '\n'; numbers[0] = 5; std::cout << "All numbers:"; for (auto i : numbers) { std::cout << ' ' << i; } std::cout << '\n'; }
输出:
Second element: 4 All numbers: 5 4 6 8
[编辑] 另请参阅
访问指定的元素,同时进行越界检查 (公共成员函数) |