类型特性
类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。
试图特化定义于
定义于
value [静态] | T 的第 N 维的元素数(公开静态成员常量) |
operator std::size_t | 转换对象为 std::size_t ,返回 value (公开成员函数) |
operator() (C++14) | 返回 value (公开成员函数) |
类型 | 定义 |
value_type | std::size_t |
type | std::integral_constant |
template< class T, unsigned N = 0> | (C++11 起) |
若 T
是数组类型,则提供等于数组第 N
维元素数量的成员常量 value
,若 N
在 [0, std::rank
中。对于任何其他类型,或若 T
是在其首维度未知边界数组且 N
为 0 ,则 value
为 0 。
template< class T, unsigned N = 0 > | (C++17 起) |
- template<class T, unsigned N = 0>
- struct extent : std::integral_constant<std::size_t, 0> {};
-
- template<class T>
- struct extent<T[], 0> : std::integral_constant<std::size_t, 0> {};
-
- template<class T, unsigned N>
- struct extent<T[], N> : std::extent<T, N-1> {};
-
- template<class T, std::size_t I>
- struct extent<T[I], 0> : std::integral_constant<std::size_t, I> {};
-
- template<class T, std::size_t I, unsigned N>
- struct extent<T[I], N> : std::extent<T, N-1> {};
- #include <iostream>
- #include <type_traits>
-
- int main()
- {
- std::cout << "std::extent
::value: " - << std::extent<int>::value << std::endl;
- std::cout << "std::extent
::value: " - << std::extent<int[1]>::value << std::endl;
- std::cout << "std::extent
::value: " - << std::extent<int[1][2]>::value << std::endl;
- std::cout << "std::extent
::value: " - << std::extent<int[1][2][3]>::value << std::endl;
- std::cout << "std::extent
::value: " - << std::extent<int[][2][3][4]>::value << std::endl;
- std::cout << "std::extent
::value: " - << std::extent<int[][2][3][4][5]>::value << std::endl;
-
- std::cout << "std::extent
::value: " - << std::extent<int[]>::value << std::endl;
-
- const auto ext = std::extent<int[9]> {};
- std::cout << "std::extent
::value: " - << ext << std::endl;
-
- const int ints[] = {1, 2, 3, 4};
- std::cout << "std::extent<{1, 2, 3, 4}>::value: "
- << std::extent<decltype(ints)>::value << std::endl;
-
- return 0;
- }
- std::extent<int>::value: 0
- std::extent<int[1]>::value: 1
- std::extent<int[1][2]>::value: 1
- std::extent<int[1][2][3]>::value: 1
- std::extent<int[][2][3][4]>::value: 0
- std::extent<int[][2][3][4][5]>::value: 0
- std::extent<int[]>::value: 0
- std::extent<int[9]>::value: 9
- std::extent<{1, 2, 3, 4}>::value: 4