gpt4 book ai didi

c - 将所有结构指针成员设置为 NULL

转载 作者:行者123 更新时间:2023-12-04 11:36:17 26 4
gpt4 key购买 nike

如果我通过 malloc 将一个指向结构的指针设置为指向一 block 内存,所有成员都会初始化为各自的默认值吗?例如 int 到 0 和指针到 NULL?我看到他们是根据我写的这个示例代码做的,所以我只是想让有人确认我的理解。感谢您的输入。

#include <stdio.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdlib.h>

typedef struct node
{
bool value;
struct node* next[5];
}
node;

int main(void)
{
node* tNode = malloc(sizeof(node));

printf("value = %i\n", tNode->value);

for (int i = 0; i < 5; i++)
{
if (tNode->next[i] == NULL)
printf("next[%i] = %p\n", i, tNode->next[i]);
}
}

最佳答案

malloc() 函数从不初始化内存区域。您必须使用 calloc() 专门将内存区域初始化为零。您看到初始化内存的原因已解释 here.

关于c - 将所有结构指针成员设置为 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28017373/

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