search

Home  >  Q&A  >  body text

C++怎么在定义数组的时候指定数组长度为变量?

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];
阿神阿神2827 days ago806

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 14:38:58

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

    int n;
    cin >> n;
    vector<int> arr(n);

    reply
    0
  • 高洛峰

    高洛峰2017-04-17 14:38:58

    Problems with dynamic memory application

    reply
    0
  • Cancelreply