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];
Use
vector
in STL. Direct manipulation of pointers is prone to errors, like this:Problems with dynamic memory application