Partager via


array::iterator

Type d'un itérateur pour la séquence contrôlée.

typedef implementation-defined iterator;

Notes

Le type décrit un objet pouvant servir d'itérateur l'accès aléatoire à la séquence contrôlée.

Exemple

// std__array__array_iterator.cpp 
// compile with: /EHsc /W4
#include <array> 
#include <iostream> 

typedef std::array<int, 4> MyArray; 

int main() 
{ 
    MyArray c0 = {0, 1, 2, 3}; 

    // display contents " 0 1 2 3" 
    std::cout << "it1:";
    for ( MyArray::iterator it1 = c0.begin(); 
          it1 != c0.end(); 
          ++it1 ) {
       std::cout << " " << *it1; 
    }
    std::cout << std::endl; 

    // display first element " 0" 
    MyArray::iterator it2 = c0.begin(); 
    std::cout << "it2:";
    std::cout << " " << *it2; 
    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::const_iterator