为什么在C ++中无法通过动态分配数组来实现以下代码编译成功? 在取消注释它显示错误的评论??
#include<iostream>
#include <string>
using namespace std;
int main()
{
string aa;
cin>>aa;
int a[aa.size()];// though allocating the array dynamically the compilation succeeded
cout<<"COMPILATION SUCCESS"<<endl;
/*char *p;
cin>>p;
int y=sizeof(p);
int b[y];
cout<<"COMPILATION ERROR"<<endl;
*/
/*
int tt;
cin<<tt;
int c[tt];// shows error
cout<<"ERROR";
*/
}
答案 0 :(得分:2)
因为您似乎正在使用允许此操作的编译器。 C ++中的VLA是GNU扩展,您有可能使用g++
或clang++
进行编译吗?
将编译器设置为严格的ISO C ++模式,它会发出警告或错误输出。
我从clang++
得到了什么:
h2co3-macbook:~ h2co3$ clang++ -o quirk quirk.cpp -Wall -std=c++11 -pedantic
quirk.cpp:6:9: warning: variable length arrays are a C99 feature [-pedantic,-Wvla]
char cs[s.size() + 1];
^
quirk.cpp:6:7: warning: unused variable 'cs' [-Wunused-variable]
char cs[s.size() + 1];
^
2 warnings generated.