std::basic_string::back

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

 
 
 
std::basic_string
 
CharT& back();
(C++11 起)
const CharT& back() const;
(C++11 起)
返回的最后一个字符在字符串中.
原文:
Returns reference to the last character in the string.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

目录

[编辑] 参数

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

[编辑] 返回值

引用的最后一个字符.
原文:
reference to the last character.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 复杂度

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

[编辑] 注释

back的要求!empty() == true,否则结果是不确定的.
原文:
back requires that !empty() == true, otherwise the result is undefined.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。


[编辑] 另请参阅

(C++11)
访问的第一个字符
原文:
accesses the first character
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

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