Sdílet prostřednictvím


array::reference

Typ odkazu na prvek.

typedef Ty& reference;

Poznámky

Typ popisuje objekt, který může sloužit jako odkaz na prvek řízené sekvence.

Příklad

 

// std_tr1__array__array_reference.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 first element " 0" 
    Myarray::reference ref = *c0.begin(); 
    std::cout << " " << ref; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

Požadavky

Záhlaví:<matice>

Obor názvů: std

Viz také

Referenční dokumentace

<array>

array – třída (STL)

array::const_reference

array::value_type