我是一个编程的初学者,下面的代码有一个问题,关于创建动态多维数组
我不明白p的原因这里的作用是什么
#include <iostream>
using namespace std;
void print2DArr(int** arp,int *ss,int nrows)
{
for(int i=0;i<nrows;i++){
for(int j=0;j<ss[i];j++){
cout << arp[i][j] <<" ";
}
cout << endl;
}
}
void main()
{
int count;
cout << "How many arrays you have?\n";
cin >> count;
int **arrs = new int*[count];
int *sizes = new int[count];
//int *arrs[3];//static array of pointers
for(int i=0;i<count;i++)
{
int size;
cout << "Enter size of array " << (i+1) << endl;
cin >> size;
sizes[i]=size;
int *p = new int[size];
arrs[i] = p;
//arrs[i] = new int[size];
cout << "Enter " << size << " values\n";
for(int j=0;j<size;j++)
//cin >> p[j];
cin >> arrs[i][j];
}
print2DArr(arrs,sizes,count);
//delete (dynamic de-allocation)
for(int i=0;i<count;i++)
delete[] arrs[i];
delete[] arrs;
}
最佳答案
这个变量并不能做很多事情。您可以更换线
int *p = new int[size];
arrs[i] = p;
与
arrs[i] = new int[size];
没有任何问题。
关于c++ - 创建动态多维数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27957593/