如何在C++中打印多维数组的维度


这是一个在C++中打印给定数组维度的程序。

算法

Here template() function is used to find out the current size of array.
Then recursively call it till the last dimension of array.

示例代码

 在线演示

#include <iostream>
using namespace std;
template <typename t, size_t n>
void printDimensionsOfArray(const t (&a)[n]) {
   cout << n;
}
template <typename t, size_t n, size_t m>
void printDimensionsOfArray(const t (&a)[n][m]) {
   cout << "Dimensions of the Array is: "<<n << " x ";
   printDimensionsOfArray(a[0]);
}
int main() {
   int a[6][7];
   printDimensionsOfArray(a);
   return 0;
}

输出

Dimensions of the Array is: 6 x 7

更新于:2019年7月30日

165次浏览

启动您的职业生涯

通过完成课程获得认证

开始学习
广告