std::basic_string::at
De cppreference.com
<metanoindex/>
<tbody> </tbody> reference at( size_type pos ); |
||
const_reference at( size_type pos ) const; |
||
Retorna uma referência ao personagem de
pos local especificado. Verificação de limites é realizada, com exceção de std::out_of_range tipo será lançada sobre acesso inválido.Original:
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.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| pos | - | posição do personagem para voltar
Original: position of the character to return The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
referência ao personagem solicitado
Original:
reference to the requested character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Exceções
joga std::out_of_range se
pos >= size()Original:
throws std::out_of_range if
pos >= size()The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Complexidade
Constante
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
