命名空间
变体
操作

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
比较
(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)

 
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 <iostream>
#include <string>
 
int main()
{
    std::string s("Exemplar");
    *s.begin() = 'e';
    std::cout << s << '\n';
 
    auto i = s.cbegin();
    std::cout << *i << '\n';
//  *i = 'E'; // error: i is a constant iterator
}

输出

exemplar
e

[编辑] 另请参阅

(C++11)
返回指向结尾的迭代器
(公有成员函数) [编辑]
返回指向开头的迭代器
(std::basic_string_view<CharT,Traits> 的公有成员函数) [编辑]