由非常量变量定义的大小数组

发布于 2024-12-15 05:11:37 字数 420 浏览 1 评论 0原文

有这样的代码:

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

他是夢罘是命 2024-12-22 05:11:37

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).

零崎曲识 2024-12-22 05:11:37

它是 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.

我们只是彼此的过ke 2024-12-22 05:11:37

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文