Namespaces
Variants
Views
Actions

std::basic_string<CharT,Traits,Allocator>::front

From cppreference.com
< cpp‎ | string‎ | basic string
Revision as of 12:23, 18 May 2014 by Legalize (Talk | contribs)

 
 
 
std::basic_string
Member functions
Element access
basic_string::front
(DR*)
Iterators
Capacity
Modifiers
Search
Operations
Constants
Non-member functions
I/O
Comparison
(until C++20)(until C++20)(until C++20)(until C++20)(until C++20)(C++20)
Numeric conversions
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
Literals
Helper classes
Deduction guides (C++17)

 
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.

Example

#include <cassert>
#include <string>
 
int main()
{
  {
    std::string s("Exemplary");
    char& f = s.front();
    f = 'e';
    assert("exemplary" == s);
  }
 
  {
    std::string const c("Exemplary");
    char const& f = c.front();
    assert('E' == f);
  }
}

See also

(DR*)
accesses the last character
(public member function) [edit]