std::basic_string::rend, std::basic_string::crend

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

 
 
 
std::basic_string
 
iterator rend();
const_iterator rend() const;
const_iterator crend() const;
(C++11 起)
返回一个反向迭代器反转字符串的最后一个字符后面的字符。它对应于前面的字符的非反转的字符串的第一个字符。此字符充当占位符,试图访问它导致未定义的行为.
原文:
Returns a reverse iterator to the character following the last character of the reversed string. It corresponds to the character preceding the first character of the non-reversed string. This character acts as a placeholder, attempting to access it results in undefined behavior.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

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

[编辑] 返回值

反向迭代的最后一个字符后面的字符
原文:
reverse iterator to the character following the last character
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂度

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

[编辑] 另请参阅

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

(公开成员函数) [edit]