Compartir a través de


array::value_type

El tipo de un elemento.

typedef Ty value_type;

Comentarios

El tipo es un sinónimo para el parámetro Tyde la plantilla.

Ejemplo

 

// std_tr1__array__array_value_type.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 contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        { 
        Myarray::value_type val = *it; 
        std::cout << " " << val; 
        } 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

Requisitos

matriz <deEncabezado: >

Espacio de nombres: std

Vea también

Referencia

<array>

array (Clase, STL)

array::reference