命名空间
变体
操作

std::inplace_vector<T,N>::at

来自 cppreference.com
< cpp‎ | 容器‎ | 原地向量
 
 
 
 
constexpr reference at( size_type pos );
(1) (自 C++26)
constexpr const_reference at( size_type pos ) const;
(2) (自 C++26)

返回指定位置pos处的元素的引用,并进行边界检查。

如果pos不在容器的范围内,则会抛出类型为std::out_of_range的异常。

内容

[编辑] 参数

pos - 要返回的元素的位置

[编辑] 返回值

对请求的元素的引用,即*(a.begin() + pos).

[编辑] 异常

如果pos >= size(),则抛出std::out_of_range

[编辑] 复杂度

恒定。

[编辑] 示例

#include <chrono>
#include <cstddef>
#include <iostream>
#include <inplace_vector>
#include <stdexcept>
 
int main()
{
    std::inplace_vector<int, 6> data{1, 2, 4, 5, 5, 6};
 
    // Set element 1
    data.at(1) = 88;
 
    // Read element 2
    std::cout << "Element at index 2 has value " << data.at(2) << '\n';
 
    std::cout << "data size = " << data.size() << '\n';
 
    try
    {
        // Try to set an element at random position >= size()
        auto moon_phase = []
        {
            return std::chrono::system_clock::now().time_since_epoch().count() % 8;
        };
        data.at(data.size() + moon_phase()) = 13;
    }
    catch(const std::out_of_range& ex)
    {
        std::cout << ex.what() << '\n';
    }
 
    // Print final values
    std::cout << "data:";
    for (int elem : data)
        std::cout << ' ' << elem;
    std::cout << '\n';
}

可能的输出

Element at index 2 has value 4
data size = 6
std::out_of_range: pos (which is 8) >= size() (which is 6)
data: 1 88 4 5 5 6

[编辑] 另请参阅

访问指定的元素
(公共成员函数) [编辑]