Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | string‎ | basic string
m (fix todo)
m (Text replace - "{{cpp|" to "{{c|")
Line 10: Line 10:
 
{{ddcl list end}}
 
{{ddcl list end}}
  
Returns a reference to the character at specified location {{tt|pos}}. Bounds checking is performed, exception of type {{cpp|std::out_of_range}} will be thrown on invalid access.
+
Returns a reference to the character at specified location {{tt|pos}}. Bounds checking is performed, exception of type {{c|std::out_of_range}} will be thrown on invalid access.
  
 
===Parameters===
 
===Parameters===
Line 21: Line 21:
  
 
===Exceptions===
 
===Exceptions===
throws {{cpp|std::out_of_range}} if {{cpp|1=pos >= size()}}
+
throws {{c|std::out_of_range}} if {{c|1=pos >= size()}}
  
 
===Complexity===
 
===Complexity===

Revision as of 20:49, 19 April 2012

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 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

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