gpt4 book ai didi

带有指向自身指针的 C 结构 - 访问值

转载 作者:太空宇宙 更新时间:2023-11-04 04:19:40 25 4
gpt4 key购买 nike

我对结构有疑问。我必须使用一个具有指向自身的指针的结构。我已经这样做了,我认为它有效:

typedef struct tag_t tag_t;
struct tag_t{
char name[15];
int is_self_closing;
tag_t *child;
};

我正在制作一个将子标签添加到标签的函数,例如“body”是 html 标签的子标签,所以我的程序核心转储并在我尝试时导致段错误使用子指针的“name”和“is_self_closing”变量。我不知道如何正确访问它们。这是程序的完整代码。

#include <stdio.h>
#include <string.h>

typedef struct tag_t tag_t;
struct tag_t{
char name[15];
int is_self_closing;
tag_t *child;
};

void add_chilld(tag_t *,char[15],int);

void print_markup(tag_t);

int main(int argc, char **argv){
tag_t parent,child;
strcpy(child.name,"body");
child.is_self_closing = 1;
strcpy(parent.name,"html");
parent.is_self_closing = 0;
add_chilld(&parent,child.name,child.is_self_closing);
printf("child name = %s child closing = %d\n",child.name,child.is_self_closing);
printf("%s %d %s\n",parent.name,parent.is_self_closing,parent.child->name);
return 0;
}

void add_chilld(tag_t *parent,char name[15],int is_self_closing){
if(is_self_closing == 1){
printf("parent name = %s\n",parent->child->name);
strcpy(parent->child->name,name);
parent->child->is_self_closing = is_self_closing;
}else{
parent->child = NULL;
}
}

最佳答案

在您的 add_chilld() 函数中,您试图访问 parent->child 但您从未让它指向任何有效的东西。

因此,您正在取消引用一个未初始化的指针,该指针包含一个不确定的值,即无效的内存地址,这会导致 undefined behavior

换句话说,在你可以使用像parent->child->name这样的东西之前,你需要确保child成员>parent 变量实际上设置为某个 child(您之前分配的)。

关于带有指向自身指针的 C 结构 - 访问值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47981605/

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