(C++17) | ||||
Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
Associative | ||||
Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
Views | ||||
(C++20) | ||||
(C++23) | ||||
Tables | ||||
Iterator invalidation | ||||
Member function table | ||||
Non-member function table |
Member types | ||||||
Member functions | ||||||
Non-member functions | ||||||
| ||||||
Helper classes | ||||||
Deduction guides(C++17) |
reference operator[]( size_type pos); | (1) | (since C++11) (constexpr since C++17) |
const_reference operator[]( size_type pos)const; | (2) | (since C++11) (constexpr since C++14) |
Returns a reference to the element at specified locationpos.
Ifpos< size() isfalse, the behavior is undefined. | (until C++26) |
Ifpos< size() isfalse:
| (since C++26) |
Contents |
pos | - | position of the element to return |
Reference to the requested element.
Constant.
Unlikestd::map::operator[], this operator never inserts a new element into the container. Accessing a nonexistent element through this operator is undefined behavior, unless the implementation is hardened(since C++26).
The following code usesoperator[] to read from and write to astd::array<int, N>:
#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:
Second element: 4All numbers: 5 4 6 8
access specified element with bounds checking (public member function)[edit] |