gpt4 book ai didi

c - 初始化没有大小的数组字面量

转载 作者:行者123 更新时间:2023-12-04 01:53:32 26 4
gpt4 key购买 nike

我对下面的表达式很好奇:

int ints[] = { 1, 2, 3 };

即使在带有 clang 的 c89 环境中,这似乎也可以正常编译。有关于这个的文档吗?在搜索它时,我似乎无法弄清楚要使用的正确术语(而且我不想再次阅读整个 c89 规范)。

这是扩展吗?编译器是否只是推断数组的大小?

编辑:我只记得你们喜欢实际编译的代码块,所以这里是:

/* clang tst.c -o tst -Wall -Wextra -Werror -std=c89 */
int main(int argc, const char *argv[]) {
int ints[] = { 1, 2, 3 };
(void)(ints); (void)(argc); (void)(argv);
return 0;
}

最佳答案

它是标准 C 的一部分,因为 C89 :

§3.5.7 Initialization

If an array of unknown size is initialized, its size is determined by the number of initializers provided for its members. At the end of its initializer list, the array no longer has incomplete type.

其实还有一个几乎完全一样的例子:

Example:

The declaration

int x[] = { 1, 3, 5 };

defines and initializes x as a one-dimensional array object that has three members, as no size was specified and there are three initializers.

关于c - 初始化没有大小的数组字面量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30016477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com