C++标准模板(STL)- 类型支持 (属性查询,获取数组类型在指定维度的大小)

类型特性
 

类型特性
类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。

试图特化定义于 <type_traits> 头文件的模板导致未定义行为,除了 std::common_type 可依照其所描述特化。

定义于<type_traits>头文件的模板可以用不完整类型实例化,除非另外有指定,尽管通常禁止以不完整类型实例化标准库模板。

属性查询

继承自 std::integral_constant

成员常量

value

[静态]

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

成员函数

operator std::size_t

转换对象为 std::size_t ,返回 value
(公开成员函数)

operator()

(C++14)

返回 value
(公开成员函数)

成员类型

类型定义
value_typestd::size_t
typestd::integral_constant<std::size_t, value>


获取数组类型在指定维度的大小

template< class T, unsigned N = 0>
struct extent;

(C++11 起)

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

辅助变量模板

template< class T, unsigned N = 0 >
inline constexpr std::size_t extent_v = extent<T, N>::value;

(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<int>::value:                "
              << std::extent<int>::value << std::endl;
    std::cout << "std::extent<int[1]>::value:             "
              << std::extent<int[1]>::value << std::endl;
    std::cout << "std::extent<int[1][2]>::value:          "
              << std::extent<int[1][2]>::value << std::endl;
    std::cout << "std::extent<int[1][2][3]>::value:       "
              << std::extent<int[1][2][3]>::value << std::endl;
    std::cout << "std::extent<int[][2][3][4]>::value:     "
              << std::extent<int[][2][3][4]>::value << std::endl;
    std::cout << "std::extent<int[][2][3][4][5]>::value:  "
              << std::extent<int[][2][3][4][5]>::value << std::endl;

    std::cout << "std::extent<int[]>::value:              "
              << std::extent<int[]>::value << std::endl;

    const auto ext = std::extent<int[9]> {};
    std::cout << "std::extent<int[9]>::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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值