我使用Linux并使用其C编译器工具和IDE Geany进行编程。
我尝试学习如何在内部使用带有union的结构,并动态地为它们分配mem。我有一个动态的alocated数组与我的嵌套结构;
struct SellItem {
char title[50];
char description[500];
int price;
int nr_of_img;
char ** image_files;//array of strings
};
struct ParagraphItem{
char * text;
};
union ContentItem{//one of the following only
struct SellItem s_item;
struct ParagraphItem p_item;
};
struct Content{
int type;//1=sellitem 2=paragraph
union ContentItem c_item;
};
主要:
struct Content * content; // The array to be
int content_count=0; // To show array size
我已经填写了两个用于测试的项目,从"图像文件"开始;
char ** img_files;
img_files = malloc(sizeof(char*) * 2);//two strings
img_files[0] = malloc(25);
img_files[1] = malloc(25);
strcpy(img_files[0], "img1.jpg");
strcpy(img_files[1], "img2.jpg");
struct SellItem item1 = {.title = "Pants", .description="Brown", .price=200, .image_files = img_files, .nr_of_img = 2};
struct SellItem item2 = {.title = "Shirt", .description="White", .price=100, .nr_of_img = 0};
content = malloc(sizeof(struct Content) * 2);
content[0].type=1;
content[0].c_item.s_item = item1;
content[1].type=1;
content[1].c_item.s_item = item2;
content_count = 2;
这似乎有效。
当我尝试添加新项目时,我使用函数:
void increase(struct Content** content, int *nr_of_content){
//I send in content_count as 2:nd param
*content = realloc(*content, (*nr_of_content+1) * sizeof(struct Content));
(*nr_of_content)++;
}
我用
设置它content[content_count].type = 1;
strcpy(content[content_count].c_item.s_item.title, "Test");
strcpy(content[content_count].c_item.s_item.description, "Beskrivning");
content[content_count].c_item.s_item.price = 100;
content[content_count].c_item.s_item.nr_of_img = 0;
可以使用另一个具有" top-declaration"
的打印功能在屏幕上访问和打印void print_1_content(struct Content);
当我关闭程序时,我想释放内存;
if(content_count > 0)
{
printf("Ska fria minnne\n");
for(int i=0;i<content_count;i++)
{
printf("I content nummer %d\n", i);
if(content[i].type==1)
{
printf("%i är typ 1\n", i);
if(content[i].c_item.s_item.nr_of_img>0)
{
printf("Har bilder\n");
for(int j=0;j<content[i].c_item.s_item.nr_of_img;j++)
{
printf("Ska fria bild nr %d\n", j);
free(content[i].c_item.s_item.image_files[j]);
printf("Friade en img minne\n");
}
}
}
else if(content[i].type==2)
{
printf("%i är typ 2\n", i);
free(content[i].c_item.p_item.text);
}
}
free(content);
content_count=0;
}
我收到错误消息
*** Error in `./short_v': double free or corruption (!prev): 0x0000560b6727cf90 ***
中止(核心倾销)
到达第三个项目(单元格)时会出现。
这是两个错误之一,另一个错误来自我想要在屏幕上打印所有内容。
答案 0 :(得分:0)
您对content_count
的使用是错误的:
strcpy(content[content_count].....
但content_count
索引超出数组。因此未定义的行为。
使用:
strcpy(content[content_count-1]....