std::basic_string::rbegin, std::basic_string::crbegin

来自cppreference.com
< cpp‎ | string‎ | basic string

 
 
 
std::basic_string
 
iterator rbegin();
const_iterator rbegin() const;
const_iterator crbegin() const;
(C++11 起)

Returns a reverse iterator to the first character of the reversed string. It corresponds to the last character of the non-reversed string.

目录

[编辑] 参数

(无)
原文:
(none)
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 返回值

reverse iterator to the first character

[编辑] 复杂度

常数
原文:
Constant
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 另请参阅

返回一个指向字符串前端的反向迭代器
原文:
returns a reverse iterator to the end
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

(公开成员函数) [编辑]