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


    类型特性
     

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

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

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

    属性查询

    继承自 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


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

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

    (C++11 起)

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

    辅助变量模板

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

    (C++17 起)

    可能的实现

    1. template<class T, unsigned N = 0>
    2. struct extent : std::integral_constant<std::size_t, 0> {};
    3. template<class T>
    4. struct extent<T[], 0> : std::integral_constant<std::size_t, 0> {};
    5. template<class T, unsigned N>
    6. struct extent<T[], N> : std::extent<T, N-1> {};
    7. template<class T, std::size_t I>
    8. struct extent<T[I], 0> : std::integral_constant<std::size_t, I> {};
    9. template<class T, std::size_t I, unsigned N>
    10. struct extent<T[I], N> : std::extent<T, N-1> {};

    调用示例

    1. #include <iostream>
    2. #include <type_traits>
    3. int main()
    4. {
    5. std::cout << "std::extent::value: "
    6. << std::extent<int>::value << std::endl;
    7. std::cout << "std::extent::value: "
    8. << std::extent<int[1]>::value << std::endl;
    9. std::cout << "std::extent::value: "
    10. << std::extent<int[1][2]>::value << std::endl;
    11. std::cout << "std::extent::value: "
    12. << std::extent<int[1][2][3]>::value << std::endl;
    13. std::cout << "std::extent::value: "
    14. << std::extent<int[][2][3][4]>::value << std::endl;
    15. std::cout << "std::extent::value: "
    16. << std::extent<int[][2][3][4][5]>::value << std::endl;
    17. std::cout << "std::extent::value: "
    18. << std::extent<int[]>::value << std::endl;
    19. const auto ext = std::extent<int[9]> {};
    20. std::cout << "std::extent::value: "
    21. << ext << std::endl;
    22. const int ints[] = {1, 2, 3, 4};
    23. std::cout << "std::extent<{1, 2, 3, 4}>::value: "
    24. << std::extent<decltype(ints)>::value << std::endl;
    25. return 0;
    26. }

    输出

    1. std::extent<int>::value: 0
    2. std::extent<int[1]>::value: 1
    3. std::extent<int[1][2]>::value: 1
    4. std::extent<int[1][2][3]>::value: 1
    5. std::extent<int[][2][3][4]>::value: 0
    6. std::extent<int[][2][3][4][5]>::value: 0
    7. std::extent<int[]>::value: 0
    8. std::extent<int[9]>::value: 9
    9. std::extent<{1, 2, 3, 4}>::value: 4

  • 相关阅读:
    webpack
    java---Stream流
    centos 编译安装的php多版本 切换
    猿创征文|【云原生 | 24】Docker运行数据库实战之MongoDB
    智能运维应用之道,告别企业数字化转型危机
    Educational Codeforces Round 119 (Rated for Div. 2)
    医疗项目 01(项目简介)
    【NUMA平衡】浅入介绍NUMA平衡技术及调度方式
    gendef和pexports
    【安全】容器中二进制漏洞检测方案
  • 原文地址:https://blog.csdn.net/qq_40788199/article/details/134359170