tuple_element Class <array>

包装数组元素的类型。

template<int Idx, class Ty, std::size_t N>
class tuple_element<Idx, <array<Ty, N> > {
    typedef Ty type;
    };

Template Parameters

  • Idx
    元素偏移量。

  • Ty
    元素的类型。

  • N
    数组大小。

备注

此模板选件类是模板选件类 tuple_element Class <tuple>的专用化。它有 array的 Idx 元素的类型的同义词的嵌套的typedef type。

示例

 

// std_tr1__array__tuple_element.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" 
    std::tuple_element<0, Myarray>::type val = c0.front(); 
    std::cout << " " << val; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

要求

标头: <array>

命名空间: std

请参见

参考

<array>

<tuple>

tuple_element Class <tuple>