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)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

reverse iterator to the first character

[编辑] 复杂度

常数
原文:
Constant
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

返回一个指向字符串前端的反向迭代器
原文:
returns a reverse iterator to the end
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公开成员函数) [edit]