std::basic_string::front

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

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

目录

[编辑] 参数

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

[编辑] 返回值

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

[编辑] 复杂度

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

[编辑] 注释

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

[编辑] 另请参阅

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

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