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
[編輯] 參閱
訪問指定的元素,帶邊界檢查 (public 成員函式) |