命名空间
变体
操作

std::tuple_element<std::array>

来自 cppreference.com
< cpp‎ | container‎ | array
 
 
 
 
定义在头文件 <array>
template< std::size_t I, class T, std::size_t N >
struct tuple_element< I, std::array<T, N> >;
(自 C++11 起)

使用类似元组的接口提供对数组元素类型进行编译时索引访问。

内容

[edit] 成员类型

成员类型 定义
type 数组元素的类型

[edit] 可能的实现

template<std::size_t I, class T>
struct tuple_element;
 
template<std::size_t I, class T, std::size_t N>
struct tuple_element<I, std::array<T,N>>
{
    using type = T;
};

[edit] 示例

#include <array>
#include <tuple>
#include <type_traits>
 
int main()
{
    // define array and get the type of the element at position 0
    std::array<int, 10> data{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
    using T = std::tuple_element<0, decltype(data)>::type; // int
    static_assert(std::is_same_v<T, int>);
 
    const auto const_data = data;
    using CT = std::tuple_element<0, decltype(const_data)>::type; // const int
 
    // the result of tuple_element depends on the cv-qualification of the tuple-like type
    static_assert(!std::is_same_v<T, CT>);
    static_assert(std::is_same_v<CT, const int>);
}

[edit] 另请参阅

结构化绑定 (C++17) 将指定的名称绑定到初始化器的子对象或元组元素[edit]
获取指定元素的类型
(类模板特化) [edit]
获取 `pair` 元素的类型
(类模板特化) [edit]