命名空间
变体
操作

std::remove_extent

来自 cppreference.com
< cpp‎ | types
 
 
元编程库
类型特征
类型类别
(C++11)
(C++14)  
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型属性
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(直到 C++20*)
(C++11)(在 C++20 中已弃用)
(C++11)
类型特征常量
元函数
(C++17)
支持的操作
关系和属性查询
类型修改
(C++11)(C++11)(C++11)
remove_extent
(C++11)

类型转换
(C++11)(在 C++23 中已弃用)
(C++11)(在 C++23 中已弃用)
(C++11)
(C++11)
(C++17)

(C++11)(直到 C++20*)(C++17)
编译时有理数运算
编译时整数序列
 
定义在头文件 <type_traits>
template< class T >
struct remove_extent;
(自 C++11 起)

如果 T 是某种类型 X 的数组,则提供成员 typedef type 等于 X,否则 typeT。请注意,如果 T 是多维数组,则只移除第一个维度。

如果程序为 std::remove_extent 添加了专门化,则行为未定义。

内容

[编辑] 成员类型

名称 定义
type T 的元素类型

[编辑] 辅助类型

template< class T >
using remove_extent_t = typename remove_extent<T>::type;
(自 C++14 起)

[编辑] 可能的实现

template<class T>
struct remove_extent { using type = T; };
 
template<class T>
struct remove_extent<T[]> { using type = T; };
 
template<class T, std::size_t N>
struct remove_extent<T[N]> { using type = T; };

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <iterator>
#include <type_traits>
 
template<class A>
    std::enable_if_t<std::rank_v<A> == 1>
print_1d(const A& a)
{
    std::copy(a, a + std::extent_v<A>,
        std::ostream_iterator<std::remove_extent_t<A>>(std::cout, " "));
    std::cout << '\n';
}
 
int main()
{
    int a[][3] = {{1, 2, 3}, {4, 5, 6}};
//  print_1d(a); // compile-time error
    print_1d(a[1]);
}

输出

4 5 6

[编辑] 另请参阅

(C++11)
检查类型是否为数组类型
(类模板) [编辑]
(C++11)
获取数组类型的维度数量
(类模板) [编辑]
(C++11)
获取数组类型沿指定维度的尺寸
(类模板) [编辑]
从给定的数组类型中移除所有范围
(类模板) [编辑]