◐ Shell
clean mode source ↗

std::vector::operator[] - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

reference operator[]( size_type pos );

const_reference operator[]( size_type pos ) const;

Restituisce un riferimento per l'elemento in pos posizione specificata. Nessun controllo dei limiti viene eseguito.

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.

Parametri

pos -

posizione dell'elemento di ritornare

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.

Valore di ritorno

riferimento per l'elemento richiesto

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.

Complessità

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.

Esempio

Il codice seguente utilizza operator[] leggere e scrivere in un std::vector<int>:

Original:

The following code uses operator[] read from and write to a std::vector<int>:

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

#include <vector>
#include <iostream>
 
int main()
{
    std::vector<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

Vedi anche

accedere elemento specificato con verifica dei limiti

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.


(metodo pubblico) [modifica]