C++怎么在定义数组的时候指定数组长度为变量?
阿神
阿神 2017-04-17 14:36:58
0
2
767

C++,在定义数组长度的时候,怎样才能使用变量?

这个代码就不行,说len不是常量

string str="HelloWord";
const int len= str.length();
char arr[len];

但如果指定字符串长度就可以

string str="HelloWord";
const int len= 9;
char arr[len];

请问怎么样才能实现定义数组长度为变量?

已解决:

string str="HelloWord";
const int len= str.length();
char* arr=new char[len];
阿神
阿神

闭关修行中......

reply all(2)
洪涛

Use vector in STL. Direct manipulation of pointers is prone to errors, like this:

int n;
cin >> n;
vector<int> arr(n);
小葫芦

Problems with dynamic memory application

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!