C90中如何分配可变大小数组?

发布于 2024-10-17 16:07:49 字数 249 浏览 1 评论 0原文

我需要为 SYMBOL 分配一个变量大小,

typedef int SYMBOL

我按照以下方式进行

SYMBOL test[nc],这里 nc 是一个整数。但这给了我以下警告:

ISO C90 禁止可变大小数组

我怎样才能在没有警告的情况下做到这一点?

谢谢, 塞特纳

I need to allocate a varibale size for SYMBOLs,

typedef int SYMBOL

I did in following way

SYMBOL test[nc], here nc is an integer. But this gives me following warning:

ISO C90 forbids variable-size array

How could i do it without getting warning?

Thanks,
Thetna

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

多孤肩上扛 2024-10-24 16:07:49

在引入可变大小数组之前,alloca 库函数就是用于此目的的。

这一切都与增加堆栈指针有关。对于典型的常量大小数组的声明,堆栈指针会随着编译时已知的常量而递增。当声明可变大小数组时,堆栈指针会以运行时已知的值递增。

The alloca library function was intended for that before variable-sized arrays were introduced.

It all has to do with incrementing the stack pointer. For the declaration of a typical constant-size array, the stack pointer is incremented with a constant that is known at compile-time. When a variable-size array is declared, the stack pointer is incremented with a value which is known at runtime.

故人爱我别走 2024-10-24 16:07:49

您必须使用 malloc 来分配它:

SYMBOL* test = malloc(sizeof(SYMBOL) * nc);

// ...

free(test);

C90 中不允许使用可变长度数组,我认为它们是在 C99 中引入的。

You would have to allocate it using malloc:

SYMBOL* test = malloc(sizeof(SYMBOL) * nc);

// ...

free(test);

Variable length arrays are not allowed in C90, I think they were introduced in C99.

生寂 2024-10-24 16:07:49

使用malloc。在这里,您可以分配一个具有输入大小的数组:

int *p;
int n;
scanf(" %d", &n);
p = malloc( n * sizeof(int) );

此外,您可以使用 (p[0], p[1],...) 访问该数组符号。

Use malloc. Here you can allocate an array with the size of the input:

int *p;
int n;
scanf(" %d", &n);
p = malloc( n * sizeof(int) );

Also, you can access the array using (p[0], p[1],...) notation.

屋檐 2024-10-24 16:07:49

为什么不使用C99呢?您可以通过添加 -std=c99 选项来使用 gcc 来执行此操作。如果编译器足够聪明,能够识别某个功能是 C90 与其他功能,我敢打赌它足够聪明,可以处理 C99 功能。

Why not use C99? You can do this with gcc by adding the -std=c99 option. If the compiler is smart enough to recognize that a feature is C90 vs. something else, I bet it is smart enough to handle C99 features.

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