std::basic_string<CharT,Traits,Allocator>::front
| CharT& front(); |
(since C++11) (until C++20) |
|
| constexpr CharT& front(); |
(since C++20) | |
| const CharT& front() const; |
(since C++11) (until C++20) |
|
| constexpr const CharT& front() const; |
(since C++20) | |
Returns reference to the first character in the string. The behavior is undefined if empty() == true.
Contents |
[edit] Parameters
(none)
[edit] Return value
reference to the first character, equivalent to operator[](0).
[edit] Complexity
Constant
[edit] Example
#include <iostream> #include <string> int main() { { std::string s("Exemplary"); char& f = s.front(); f = 'e'; std::cout << s << '\n'; // "exemplary" } { std::string const c("Exemplary"); char const& f = c.front(); std::cout << &f << '\n'; // "Exemplary" } }
Output:
exemplary Exemplary
[edit] See also
| (C++11) |
accesses the last character (public member function) |
| accesses the first character (public member function of std::basic_string_view<CharT,Traits>)
|

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
