Difference between revisions of "cpp/string/basic string/at"
From cppreference.com
< cpp | string | basic string
m (r2.7.3) (Robot: Adding it, ja, pl, pt, ru, zh) |
m (Text replace - "/sidebar" to "/navbar") |
||
Line 1: | Line 1: | ||
{{cpp/string/basic_string/title | at}} | {{cpp/string/basic_string/title | at}} | ||
− | {{cpp/string/basic_string/ | + | {{cpp/string/basic_string/navbar}} |
{{ddcl list begin}} | {{ddcl list begin}} | ||
{{ddcl list item | | {{ddcl list item | |
Revision as of 14:05, 15 June 2012
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 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