由非常量变量定义的大小数组
有这样的代码:
#include <iostream>
int main()
{
int size;
std::cin >> size;
size = size + 1;
int tab3[size];
tab3[0] = 5;
std::cout << tab3[0] << " " << sizeof(tab3) << std::endl;
return 0;
}
结果是:
$ g++ prog.cpp -o prog -Wall -W
$ ./prog
5
5 24
为什么这段代码还能编译?数组的长度不应该是常量变量吗?
我使用 g++ 版本 4.4.5。
There is such code:
#include <iostream>
int main()
{
int size;
std::cin >> size;
size = size + 1;
int tab3[size];
tab3[0] = 5;
std::cout << tab3[0] << " " << sizeof(tab3) << std::endl;
return 0;
}
The result is:
$ g++ prog.cpp -o prog -Wall -W
$ ./prog
5
5 24
Why does this code even compile? Shouldn't be length of array a constant variable?
I used g++ version 4.4.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
C++ 中的可变长度数组可用作 GCC 中的扩展。使用所有警告进行编译应该会提醒您这一事实(包括
-pedantic
)。Variable-length arrays in C++ are available as an extension in GCC. Compiling with all warnings should have alerted you to that fact (include
-pedantic
).它是 C99 功能,而不是 C++ 的一部分。它们通常被称为 VLA(可变长度数组)。
如果您使用
-pedantic
运行g++
,它将被拒绝。请参阅 GCC 文档 了解更多信息。
另请参阅:VLA 是邪恶的。
It is a C99 feature, not a part of C++. They are commonly refered to as VLAs(Variable Length Arrays.
If you run
g++
with-pedantic
it will be rejected.See GCC docs for more info.
See also: VLAs are evil.
GCC 提供 VLA 或可变长度数组。更好的做法是创建一个指针并使用 new 关键字来分配空间。 VLA 在 MSVC 中不可用,因此第二个选项更适合跨平台代码
GCC provide's VLA's or variable length arrays. A better practice is to create a pointer and use the
new
keyword to allocate space. VLA's are not available in MSVC, so the second option is better for cross platform code