Partager via


array::operator[]

Accède à un élément à une position spécifiée.

reference operator[](size_type off);
const_reference operator[](size_type off) const;

Paramètres

  • off
    Position de l'élément auquel accéder.

Notes

Les fonctions membres retournent une référence à l'élément de la séquence contrôlée à la position off. Si la place n'est pas valide, le comportement est indéfini.

Exemple

 

// std_tr1__array__array_operator_sub.cpp 
// compile with: /EHsc 
#include <array> 
#include <iostream> 
 
typedef std::array<int, 4> Myarray; 
int main() 
    { 
    Myarray c0 = {0, 1, 2, 3}; 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
// display odd elements " 1 3" 
    std::cout << " " << c0[1]; 
    std::cout << " " << c0[3]; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

Configuration requise

**En-tête :**tableau <de >

Espace de noms : std

Voir aussi

Référence

<array>

array, classe (STL)

array::at