Condividi tramite


array::at

Accede a un elemento in una posizione specificata.

reference at(size_type off);
const_reference at(size_type off) const;

Parametri

  • off
    Posizione dell'elemento a cui accedere.

Note

Le funzioni membro restituisce un riferimento all'elemento della sequenza selezionata nella posizione off.Se tale percorso non è valido, la funzione genera un oggetto di classe out_of_range.

Esempio

 

// std__array__array_at.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.at(1); 
    std::cout << " " << c0.at(3); 
    std::cout << std::endl; 
 
    return (0); 
    } 
 

Requisiti

intestazione: <array>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

<array>

array Class (TR1)

array::operator[]