我被C++二维动态数组卡住了。我想获取数组长度。这是代码:
#include <iostream>
using namespace std;
int dosomestuff(char **dict);
int main(){
int x, y;
char **dict;
cin>>x>>y; // here to input the 'x'
dict = new char *[x];
for(i = 0; i < x; i++){
dict[i] = new char[y];
for(j = 0; j < y; j++){
cin>>dict[i][j];
}
}
dosomestuff(dict);
}
int dosomestuff(char **dict){
int x, y;
x = sizeof(*dict); //8 not equal to the 'x'
//run in mac_64 I think this is the pointer's length
y = strlen(dict[0]); //this equal to the 'y' in function main
cout<<x<<" "<<y<<endl;
return 0;
}
我想要的是在dosomestuff函数中使x等于函数main中的“x”。
我如何获得它?有人可以帮助我吗?多谢。
最佳答案
sizeof(*dict)
仅提供sizeof(char*)
,这不是您想要的。
无法通过x
中的dict
知道dosomestuff
的值。如果要将char**
用作dict
,最好的选择是将x
和y
传递给dosomestuff
。
int dosomestuff(char **dict, int x, int y);
由于您使用的是C++,因此可以使用:
std::vector<std::string> dict;
然后,如果将
dosomestuff
传递给它,您将在dict
中获得所需的所有信息。关于c++ - C++从二维动态数组获取长度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24443312/