Namespaces
Variants
Views
Actions

std::basic_string::at

From cppreference.com
< cpp | string | basic string
Revision as of 15:05, 15 June 2012 by P12bot (Talk | contribs)
 
 
 
std::basic_string
 
reference       at( size_type pos );
const_reference at( size_type pos ) const;

Returns a reference to the character at specified location pos. Bounds checking is performed, exception of type std::out_of_range will be thrown on invalid access.

Contents

Parameters

pos - position of the character to return

Return value

reference to the requested character

Exceptions

throws std::out_of_range if pos >= size()

Complexity

Constant

See also

access specified character
(public member function) [edit]