std::tuple_element<std::array>
定义于头文件 <array>
|
||
template< std::size_t I, class T, std::size_t N > struct tuple_element<I, std::array<T, N> >; |
(C++11 起) | |
使用类 tuple 接口,提供 array 元素类型的编译时带下标访问
成员类型
成员类型 | 定义 |
type | array 的元素类型 |
可能的实现
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; }; |
示例
运行此代码
#include <array> #include <iostream> #include <tuple> #include <type_traits> int main() { // 定义 array 并获取位于位置 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 std::cout << std::boolalpha; std::cout << std::is_same<T, int>::value << '\n'; const auto const_data = data; using CT = std::tuple_element<0, decltype(const_data)>::type; // const int // tuple_element 的结果取决于仿 tuple 类型的 cv 限定 std::cout << std::is_same<T, CT>::value << '\n'; std::cout << std::is_same<CT, const int>::value << '\n'; }
输出:
true false true
参阅
获得指定元素的类型 (类模板特化) | |
获得 pair 中元素的类型 (类模板特化) |