命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::operator[]

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
basic_string::operator[]
迭代器
容量
修改器
搜索
操作
常量
非成员函数
I/O
比较
(until C++20)(until C++20)(until C++20)(until C++20)(until 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& operator[]( size_type pos );
(1) (从 C++20 开始为 constexpr)
const CharT& operator[]( size_type pos ) const;
(2) (从 C++20 开始为 constexpr)

如果 pos < size(),则返回指定位置 pos 处的字符的引用;如果 pos == size(),则返回 CharT() 的引用。不执行边界检查。

如果 pos > size(),则行为未定义。

对于重载 (1),如果 pos == size(),则行为未定义 如果返回的引用所指对象被修改为除 CharT() 以外的任何值(自 C++11 起).

内容

[编辑] 参数

pos - 要返回的字符的位置

[编辑] 返回值

如果 *(begin() + pos),则返回 pos < size();如果 pos == size(),则返回 CharT() 的引用。

[编辑] 复杂度

常数。

[编辑] 示例

#include <iostream>
#include <string>
 
int main()
{
    const std::string e("Exemplar");
    for (unsigned i = e.length() - 1; i != 0; i /= 2)
        std::cout << e[i];
    std::cout << '\n';
 
    const char* c = &e[0];
    std::cout << c << '\n'; // print as a C string
 
    // Change the last character of s into a 'y'
    std::string s("Exemplar ");
    s[s.size() - 1] = 'y'; // equivalent to s.back() = 'y';
    std::cout << s << '\n';
}

输出

rmx
Exemplar
Exemplary

[编辑] 缺陷报告

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

DR 应用于 已发布的行为 正确行为
LWG 259 C++98 非 const 重载可以返回 const 左值 data()[pos],这是非法的 更改为返回
*(begin() + pos)
LWG 2475 C++11 如果 pos == size(),则修改返回的引用所指对象的行为未定义
如果
定义良好
修改为 CharT()

[编辑] 另请参阅

使用边界检查访问指定字符
(公共成员函数) [编辑]
(DR*)
访问第一个字符
(公共成员函数) [编辑]
(DR*)
访问最后一个字符
(公共成员函数) [编辑]
访问指定字符
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]