std::basic_string<CharT,Traits,Allocator>::begin, std::basic_string<CharT,Traits,Allocator>::cbegin

来自cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
basic_string::beginbasic_string::cbegin
(C++11)
容量
修改器
搜索
操作
常量
非成员函数
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)

 
iterator begin();
(1) (C++11 起为 noexcept)
(C++20 起为 constexpr)
const_iterator begin() const;
(2) (C++11 起为 noexcept)
(C++20 起为 constexpr)
const_iterator cbegin() const noexcept;
(3) (C++11 起)
(C++20 起为 constexpr)

返回指向字符串首字符的迭代器。

begin() 返回可变常量迭代器,取决于 *this 的常量性。

cbegin() 始终返回常量迭代器。它等价于 const_cast<const basic_string&>(*this).begin()

range-begin-end.svg

参数

(无)

返回值

指向首字符的迭代器

复杂度

常数

注解

libc++ 将 cbegin() 向后移植到 C++98 模式。

示例

#include <string>
#include <iostream>
 
int main()
{
    std::string s("Exemplar");
    *s.begin() = 'e';
    std::cout << s <<'\n';
 
    auto i = s.cbegin();
    std::cout << *i << '\n';
//  *i = 'E'; // 错误:i 是常量迭代器
}

输出:

exemplar
e

参阅

(C++11)
返回指向末尾的迭代器
(公开成员函数)
返回指向起始位置的迭代器
(std::basic_string_view<CharT,Traits> 的公开成员函数)