std::remove_all_extents
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct remove_all_extents; |
(C++11 起) | |
如果
T
是一个多维数组的某些类型X
,成员typedeftype
等于X
,否则type
是T
.原文:
If
T
is a multidimensional array of some type X
, provides the member typedef type
equal to X
, otherwise type
is T
.目录 |
[编辑] 会员类型
姓名
|
Definition |
type
|
T 的元素的类型 |
[编辑] 可能的实现
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 Tp, 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 foo(const A&) { typedef typename std::remove_all_extents<A>::type Type; std::cout << "underlying type: " << typeid(Type).name() << '\n'; } int main() { float a1[1][2][3]; int a2[3][2]; float a3[1][1][1][1][2]; double a4[2][3]; foo(a1); foo(a2); foo(a3); foo(a4); }
输出:
underlying type: f underlying type: i underlying type: f underlying type: d
[编辑] 另请参阅
(C++11) |
检查类型是否是数组类型 (类模板) |
(C++11) |
获取数组类型的维度 (类模板) |
(C++11) |
获取指定维度的数据类型大小 (类模板) |
(C++11) |
删除数组类型的一个给定维度 (类模板) |