Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/basic string/at"

From cppreference.com
< cpp‎ | string‎ | basic string
m (Text replace - "{{returns}}" to "===Return value===")
m (Text replace - "{{complex}}" to "===Complexity===")
Line 23: Line 23:
  
 
<!-- ======== -->
 
<!-- ======== -->
{{complex}}
+
===Complexity===
 
{{complex constant}}
 
{{complex constant}}
  

Revision as of 17:54, 2 August 2011

Template:cpp/string/basic string/sidebar Template:ddcl list begin <tr class="t-dcl ">

<td class="t-dcl-nopad">
reference       at( size_type pos );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
const_reference at( size_type pos ) const;
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

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

Parameters

pos - position of the character to return

Return value

reference to the requested character

Complexity

Template:complex constant

Template:see also

Template:cpp/string/basic string/dcl list operator at