命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::rbegin, std::basic_string<CharT,Traits,Allocator>::crbegin

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
basic_string::rbeginbasic_string::crbegin
(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)

 
reverse_iterator rbegin();
(1) (自 C++11 起 noexcept)
(自 C++20 起 constexpr)
const_reverse_iterator rbegin() const;
(2) (自 C++11 起 noexcept)
(自 C++20 起 constexpr)
const_reverse_iterator crbegin() const noexcept;
(3) (自 C++11 起)
(自 C++20 起 constexpr)

返回指向反转字符串的第一个字符的反向迭代器。它对应于非反转字符串的最后一个字符。

range-rbegin-rend.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个字符的反向迭代器。

[编辑] 复杂度

常数。

[编辑] 注释

libc++ 将 crbegin() 反向移植到 C++98 模式。

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <iterator>
#include <string>
 
int main()
{
    std::string s("Exemplar!");
    *s.rbegin() = 'y';
    std::cout << s << '\n'; // "Exemplary"
 
    std::string c;
    std::copy(s.crbegin(), s.crend(), std::back_inserter(c));
    std::cout << c << '\n'; // "yralpmexE"
}

输出

Exemplary
yralpmexE

[编辑] 另请参阅

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