Namespaces
Variants

std::experimental::basic_string_view<CharT,Traits>:: operator[]

From cppreference.net
constexpr const_reference operator [ ] ( size_type pos ) const ;
(库基础技术规范)

返回指定位置 pos 处字符的常量引用。

不执行边界检查:如果 pos >= size ( ) ,则行为是未定义的。

目录

参数

pos - 要返回字符的位置

返回值

对所请求字符的常量引用

异常

不会抛出异常

复杂度

常量。

注释

std::basic_string::operator[] 不同, basic_string_view::operator[](size()) 具有未定义行为而非返回 CharT()

示例

#include <iostream>
#include <experimental/string_view>
int main()
{
    std::string str = "Exemplar";
    std::experimental::string_view v = str;
    std::cout << v[2] << '\n';
//  v[2] = 'y'; // 错误:无法通过 string view 修改内容
    str[2] = 'y';
    std::cout << v[2] << '\n';
}

输出:

e
y

参见

访问指定字符(带边界检查)
(公开成员函数)