std::remove_all_extents
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct remove_all_extents; |
(自 C++11 起) | |
如果 T
是某种类型 X
的多维数组,则提供成员类型定义 type
等于 X
,否则 type
为 T
。
如果程序为 std::remove_all_extents
添加了特化,则行为未定义。
内容 |
[编辑] 成员类型
名称 | 定义 |
type
|
T 的元素类型 |
[编辑] 辅助类型
template< class T > using remove_all_extents_t = typename remove_all_extents<T>::type; |
(自 C++14 起) | |
[编辑] 可能的实现
template<class T> struct remove_all_extents { typedef T type; }; template<class T> struct remove_all_extents<T[]> { typedef typename remove_all_extents<T>::type type; }; template<class T, std::size_t N> struct remove_all_extents<T[N]> { typedef typename remove_all_extents<T>::type type; }; |
[编辑] 示例
运行此代码
#include <iostream> #include <type_traits> #include <typeinfo> template<class A> void info(const A&) { typedef typename std::remove_all_extents<A>::type Type; std::cout << "underlying type: " << typeid(Type).name() << '\n'; } int main() { float a0; float a1[1][2][3]; float a2[1][1][1][1][2]; float* a3; int a4[3][2]; double a5[2][3]; struct X { int m; } x0[3][3]; info(a0); info(a1); info(a2); info(a3); info(a4); info(a5); info(x0); }
可能的输出
underlying type: float underlying type: float underlying type: float underlying type: float* underlying type: int underlying type: double underlying type: main::X
[编辑] 另请参阅
(C++11) |
检查类型是否为数组类型 (类模板) |
(C++11) |
获取数组类型的维度数 (类模板) |
(C++11) |
获取数组类型沿指定维度的尺寸 (类模板) |
(C++11) |
从给定的数组类型中移除一个维度 (类模板) |