◐ Shell
clean mode source ↗

std::array::operator[] – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

reference operator[]( size_type pos );

(seit C++11)

const_reference operator[]( size_type pos ) const;

(seit C++11)

Gibt einen Verweis auf das Element an der angegebenen Stelle pos. Keine Grenzen Überprüfung durchgeführt wird .

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.

Parameter

pos -

Position des Elements, um zurückzukehren

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.

Rückgabewert

Verweis auf das angeforderte Element

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.

Komplexität

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.

Beispiel

Der folgende Code verwendet operator[] lesen und schreiben zu einem 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.

#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

Siehe auch

Zugriff auf angegebene Element mit Überprüfung von Grenzen

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.


(öffentliche Elementfunktion) [edit]