Namespaces
Variants
Views
Actions

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 | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
CharT& front();
 
CharT& front();
 
}}
 
}}
{{dcl | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
const CharT& front() const;
 
const CharT& front() const;
 
}}
 
}}

Revision as of 15:47, 1 July 2013

 
 
 
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.

See also

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