Difference between revisions of "cpp/string/basic string/front"
From cppreference.com
< cpp | string | basic string
m (Update links.) |
m (Use since= and until= params of {{dcl}} template.) |
||
Line 2: | Line 2: | ||
{{cpp/string/basic_string/navbar}} | {{cpp/string/basic_string/navbar}} | ||
{{dcl begin}} | {{dcl begin}} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
CharT& front(); | CharT& front(); | ||
}} | }} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
const CharT& front() const; | const CharT& front() const; | ||
}} | }} |
Revision as of 15:47, 1 July 2013
CharT& front(); |
(since C++11) | |
const CharT& front() const; |
(since C++11) | |
Returns reference to the first character in the string.
Contents |
Parameters
(none)
Return value
reference to the first character.
Complexity
Constant
Notes
front
requires that !empty() == true, otherwise the result is undefined.
See also
(DR*) |
accesses the last character (public member function) |