gpt4 book ai didi

c++ - C 和 C++ 中的初始化列表

转载 作者:太空狗 更新时间:2023-10-29 19:46:27 24 4
gpt4 key购买 nike

出于某种原因,我认为 C 和 C++ 是这样工作的:

int foo[10] = {57};
for (int i=0; i<10; ++i)
assert (foo[i] == 57);

原来剩余的整数被初始化为 0,而不是 57。我从哪里得到这个想法的?这在某一时刻是真的吗?结构初始化列表是否如此?当分配给 = {} 和 = {0} 时,数组和结构什么时候开始整齐而正确地将自身初始化为 0 值?我一直认为它们会初始化为垃圾,除非另有明确说明。

最佳答案

只要初始化程序存在,它就永远是这样。 C89 说:

If there are fewer initializers in a list than there are members of an aggregate, the remainder of the aggregate shall be initialized implicitly the same as objects that have static storage duration.

关于c++ - C 和 C++ 中的初始化列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12164061/

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