std::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)
类型变换
(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, unsigned N = 0 >
struct extent;
(C++11 起)

T 是数组类型,则提供等于数组第 N 维元素数量的成员常量 value,若 N[0std::rank<T>::value) 中。对于任何其他类型,或若 T 是在其首维度未知边界数组且 N0,则 value0

如果程序添加了 std::extentstd::extent_v (C++17 起) 的特化,那么行为未定义。

辅助变量模板

template< class T, unsigned N = 0 >
inline constexpr std::size_t extent_v = extent<T, N>::value;
(C++17 起)

继承自 std::integral_constant

成员常量

value
[静态]
T 的第 N 维的元素数
(公开静态成员常量)

成员函数

operator std::size_t
将对象转换到 std::size_t,返回 value
(公开成员函数)
operator()
(C++14)
返回 value
(公开成员函数)

成员类型

类型 定义
value_type std::size_t
type std::integral_constant<std::size_t, value>

可能的实现

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()
{
    static_assert(
        std::extent_v<int[3]> == 3 && //< 默认维度为 0
        std::extent_v<int[3], 0> == 3 && //< 同上
        std::extent_v<int[3][4], 0> == 3 &&
        std::extent_v<int[3][4], 1> == 4 &&
        std::extent_v<int[3][4], 2> == 0 &&
        std::extent_v<int[]> == 0
    );
 
    const auto ext = std::extent<int['*']>{};
    std::cout << ext << '\n'; // < 隐式转换到 std::size_t
 
    const int ints[]{1, 2, 3, 4};
    static_assert(std::extent_v<decltype(ints)> == 4); // < 数组大小
 
    [[maybe_unused]] int ary[][3] = {{1, 2, 3}};
 
    // ary[0] 的类型是 'int[3]' 的引用,因此 extent 无法正确计算并返回 0
    static_assert(std::is_same_v<decltype(ary[0]), int(&)[3]>);
    static_assert(std::extent_v<decltype(ary[0])> == 0);
    // 移除引用将能给出正确尺度值 3
    static_assert(std::extent_v<std::remove_cvref_t<decltype(ary[0])>> == 3);
}

输出:

42

参阅

(C++11)
检查类型是否是数组类型
(类模板)
(C++11)
获取数组类型的维数
(类模板)
从给定数组类型移除一个维度
(类模板)
移除给定数组类型的所有维度
(类模板)
(C++23)
某秩多维索引空间的一个描述符
(类模板)