rank 类
获取数组维度数。
语法
template <class Ty>
struct rank;
参数
Ty
要查询的类型。
注解
类型查询会保留数组类型 Ty 的维度数值,如果 Ty 不是数组类型,则为 0。
示例
// std__type_traits__rank.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
std::cout << "rank<int> == "
<< std::rank<int>::value << std::endl;
std::cout << "rank<int[5]> == "
<< std::rank<int[5]>::value << std::endl;
std::cout << "rank<int[5][10]> == "
<< std::rank<int[5][10]>::value << std::endl;
return (0);
}
rank<int> == 0
rank<int[5]> == 1
rank<int[5][10]> == 2
要求
标头:<type_traits>
命名空间: std