命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::at

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
basic_string::at
迭代器
容量
修饰符
搜索
操作
常量
非成员函数
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推导指南 (C++17)

 
CharT& at( size_type pos );
(1) (从 C++20 开始支持 constexpr)
const CharT& at( size_type pos ) const;
(2) (从 C++20 开始支持 constexpr)

返回指定位置 pos 处的字符的引用。执行边界检查,如果访问无效,将抛出类型为 std::out_of_range 的异常。

内容

[编辑] 参数

pos - 要返回的字符的位置

[编辑] 返回值

对所请求字符的引用。

[编辑] 异常

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

如果因任何原因抛出异常,这些函数将没有任何效果 (强异常安全性保证).

[编辑] 复杂度

常数。

[编辑] 示例

#include <iostream>
#include <stdexcept>
#include <string>
 
int main()
{
    std::string s("message"); // for capacity
 
    s = "abc";
    s.at(2) = 'x'; // OK
    std::cout << s << '\n';
 
    std::cout << "string size = " << s.size() << '\n';
    std::cout << "string capacity = " << s.capacity() << '\n';
 
    try
    {
        // This will throw since the requested offset is greater than the current size.
        s.at(3) = 'x';
    }
    catch (std::out_of_range const& exc)
    {
        std::cout << exc.what() << '\n';
    }
}

可能的输出

abx
string size = 3
string capacity = 7
basic_string::at

[编辑] 缺陷报告

以下行为更改缺陷报告被追溯应用到先前发布的 C++ 标准。

DR 应用于 发布的行为 正确的行为
LWG 847 C++98 没有异常安全性保证 添加了强异常安全性保证

[编辑] 另请参阅

访问指定字符
(公共成员函数) [编辑]
访问指定字符,进行边界检查
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]