std::vector<T,Allocator>::operator[]
来自 cppreference.com
reference operator[]( size_type pos ); |
(1) | (从 C++20 开始为 constexpr) |
const_reference operator[]( size_type pos ) const; |
(2) | (从 C++20 开始为 constexpr) |
返回指定位置 pos 处元素的引用。不执行边界检查。
内容 |
[编辑] 参数
pos | - | 要返回的元素的位置 |
[编辑] 返回值
对请求元素的引用。
[编辑] 复杂度
恒定。
[编辑] 注释
与 std::map::operator[] 不同,此运算符绝不会将新元素插入容器中。通过此运算符访问不存在的元素是未定义的行为。
[编辑] 示例
以下代码使用 operator[] 从 std::vector<int> 中读写
运行此代码
#include <vector> #include <iostream> int main() { std::vector<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'; } // Since C++20 std::vector can be used in constexpr context: #if defined(__cpp_lib_constexpr_vector) and defined(__cpp_consteval) // Gets the sum of all primes in [0, N) using sieve of Eratosthenes consteval auto sum_of_all_primes_up_to(unsigned N) { if (N < 2) return 0ULL; std::vector<bool> is_prime(N, true); is_prime[0] = is_prime[1] = false; auto propagate_non_primality = [&](decltype(N) n) { for (decltype(N) m = n + n; m < is_prime.size(); m += n) is_prime[m] = false; }; auto sum{0ULL}; for (decltype(N) n{2}; n != N; ++n) if (is_prime[n]) { sum += n; propagate_non_primality(n); } return sum; } //< vector's memory is released here static_assert(sum_of_all_primes_up_to(42) == 0xEE); static_assert(sum_of_all_primes_up_to(100) == 0x424); static_assert(sum_of_all_primes_up_to(1001) == 76127); #endif
输出
Second element: 4 All numbers: 5 4 6 8
[编辑] 另请参阅
通过边界检查访问指定元素 (公共成员函数) |