std::basic_string::back
来自cppreference.com
< cpp | string | basic string
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
CharT& back(); |
(C++11 起) | |
const CharT& back() const; |
(C++11 起) | |
返回的最后一个字符在字符串中.
原文:
Returns reference to the last character in the string.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
引用的最后一个字符.
[编辑] 复杂度
常数
[编辑] 注释
back
的要求!empty() == true,否则结果是不确定的.原文:
back
requires that !empty() == true, otherwise the result is undefined.
[编辑] 另请参阅
(C++11) |
访问的第一个字符 (公共成员函数) |