作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
typedef struct mensagem
{
int sender ;
int receiver ;
char *text ;
} *Item ;
typedef struct node
{
Item item ;
struct node *next ;
} *link ;
link init(char* text)
{
link x = (link) malloc(sizeof(struct node));
(x->item->text) = (char*) malloc(sizeof(char)*(strlen(text)+1));
strcpy(x->item->text, text);
x->next = NULL;
return x;
}
我打算使用 item 内的数据,但我在线上遇到了段错误:
(x->item->text) = (char*) malloc(sizeof(char)*(strlen(text)+1));
我对 C 和指针相当陌生,但我在这里找不到问题。
最佳答案
您尚未为 x->item 指向的结构分配内存。添加
x->item = malloc(sizeof (struct mensamam));
在其他 malloc 之前。
关于C : Acessing a structure within a structure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23574844/
我是一名优秀的程序员,十分优秀!