std::extents<IndexType,Extents...>::rank
来自 cppreference.com
static constexpr rank_type rank() const noexcept; |
(自 C++23 起) | |
返回 extents
中的维度数。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
维度数。
[编辑] 示例
运行此代码
#include <iostream> #include <mdspan> int main() { std::extents<int, 1, 2> e1; std::extents<int, 3, 4, std::dynamic_extent> e2(5); std::cout << e1.rank() << ", " << e2.rank() << '\n'; }
输出
2, 3
[编辑] 另请参阅
[静态] |
返回 extents 的动态秩(公共静态成员函数) |
(C++11) |
获取数组类型的维度数 (类模板) |