gpt4 book ai didi

objective-c - 在 C 中奇怪地使用大括号

转载 作者:太空狗 更新时间:2023-10-30 03:09:50 25 4
gpt4 key购买 nike

很抱歉这个简单的问题,但我正在度假阅读一本关于核心音频的书,并且没有带我的 C 或 Objective C 书...

这个变量定义中的花括号有什么作用?

MyRecorder recorder = {0};

最佳答案

假设 MyRecorder 是一个 struct,这 sets every member to their respective representation of zero (0 表示整数,NULL 表示指针等)。

实际上,这也适用于所有其他数据类型,例如 intdouble、指针、数组、嵌套结构……,您可以想象的一切(感谢 pmg指出这一点!)

更新:从上面链接的网站中摘录的引用 C99 的最终草案:

[6.7.8.21] If there are fewer initializers in a brace-enclosed list than there are elements or members of an aggregate, [...] the remainder of the aggregate shall be initialized implicitly the same as objects that have static storage duration.

关于objective-c - 在 C 中奇怪地使用大括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8744967/

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