[ Web Proxy ]
URL:
Viewing: http://pt.cppreference.com/cpp/container/array/at [Back]  [Original]

std::array::at - cppreference.com
cppreference.com
Espaos nominais
Variantes

std::array::at

De cppreference.com

<metanoindex/>

 
 
 
std::array
Funes de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
acesso. Elemento
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
array::at
array::operator[]
array::front
array::back
array::data
Iteradores
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
array::begin
array::cbegin
array::end
array::cend
array::rbegin
array::crbegin
array::rend
array::crend
Capacidade
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
array::empty
array::size
array::max_size
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
array::fill
array::swap
No-membros funes
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Classes auxiliares
Original:
Helper classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
<tbody> </tbody>
reference at( size_type pos );
(desde C++11)
const_reference at( size_type pos ) const;
(desde C++11)
Devolve uma referncia para o elemento em pos local especificado. Verificao de limites realizada, com exceo de std::out_of_range tipo ser lanada sobre acesso invlido.
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.

Parmetros

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

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

Excees

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 tambm

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.

(funo pblica membro) [edit]

Web Proxy Viewer  |  New URL  |  Original Page