std::array::operator[]
STD::Array::Operator。[]
reference operator; | | (until C++17) |
---|---|---|
constexpr reference operator; | | (since C++17) |
const_reference operator const; | | (until C++14) |
constexpr const_reference operator const; | | (since C++14) |
返回对指定位置的元素的引用。pos
.不执行边界检查。
参数
pos | - | position of the element to return |
---|
返回值
引用请求的元素。
复杂性
常量。
注记
不像std::map::operator[]
,此运算符从不向容器中插入新元素。
例
下面的代码使用operator[]读取并写入std::array<int>*
二次
#include <array>
#include <iostream>
int main()
{
std::array<int,4> 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
二次
另见
at | access specified element with bounds checking (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。