std::array::operator[]
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
reference operator[]( size_type pos ); |
(desde C++11) | |
const_reference operator[]( size_type pos ) const; |
(desde C++11) | |
Devuelve una referencia al elemento en
pos
ubicación especificada. Sin comprobación de límites se realiza .Original:
Returns a reference to the element at specified location
pos
. No bounds checking is performed.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.
Contenido |
[editar] Parámetros
pos | - | la posición del elemento para volver
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. |
[editar] Valor de retorno
referencia para el 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] Complejidad
Constant
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.
[editar] Ejemplo
El código siguiente utiliza
operator[]
leer y escribir en un std::array<int>:
Original:
The following code uses
operator[]
read from and write to a std::array<int>:
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.
#include <array> #include <iostream> int main() { std::array<int> numbers {2, 4, 6, 8}; std::cout << "Second element: " << numbers[1] << '\n'; numbers[0] = 5; std::cout << "All numbers:"; for (auto i : numbers) { std::cout << ' ' << i; } std::cout << '\n'; }
Output:
Second element: 4 All numbers: 5 4 6 8
[editar] Ver también
acceder al elemento especificado con comprobación de límites Original: access specified element with bounds checking The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) |