| (since C++11) | |||
| (since C++11) (until C++14) | |||
| (since C++14) |
Returns a reference to the element at specified location pos
. No bounds checking is performed.
Parameters
pos | - | position of the element to return |
Return value
Reference to the requested element.
Complexity
Constant.
Notes
Unlike std::map::operator[]
, this operator never inserts a new element into the container.
Example
The following code uses operator[]
to read from and write to a std::array<int>
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #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' ; } |
Output:
1 2 | Second element: 4 All numbers: 5 4 6 8 |
See also
access specified element with bounds checking (public member function) |
Please login to continue.