◐ Shell
clean mode source ↗

std::array::at - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

reference at( size_type pos );

(desde C++11)

const_reference at( size_type pos ) const;

(desde C++11)

Devolve uma referência para o elemento em 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 element 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.

Parâmetros

pos -

posição do elemento de voltar

Original:

position of the element 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 elemento solicitado

Original:

reference to the requested element

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceções

std::out_of_range if !(pos < size()).

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.

Veja também

acessar o elemento especificado

Original:

access specified element

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(função pública membro) [edit]