gpt4 book ai didi

c - 通过引用将动态创建和填充结构数组的函数传递结构

转载 作者:行者123 更新时间:2023-11-30 14:51:29 25 4
gpt4 key购买 nike

我想将结构指针传递给函数,该函数将在传递的结构指针指向的位置动态创建结构数组。我能够成功创建并填充结构数组,但是当尝试使用传递的指针打印调用函数中的数据时,会给我一个垃圾值。请帮助我了解为什么我的结构指针指向垃圾以及如何正确访问我的数据。

下面只是一些示例代码,演示如何使用 malloc 和 realloc 传递和动态填充结构体。这是不正确的方法:

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

struct student
{
int id;
char name[20];
float percentage;
};

void func(struct student *record);

int main()
{
struct student *record = NULL;

record = (struct student *)malloc(sizeof(struct student));

func(record);

if(record != NULL)
{
for(int i=0; i<2; i++)
{
printf(" 1 Id is: %d \n", record[i].id);
printf(" 1 Name is: %s \n", record[i].name);
printf(" 1 Percentage is: %f \n", record[i].percentage);
printf("\n");
}
}
else
{
printf("record pointer is null");
}

return 0;
}

void func(struct student *record1)
{
for(int i=0; i<2; i++)
{
if(i)
{
record1 = (struct student *)realloc(record1,sizeof(struct student)*(i+1));
}
record1[i].id=1;
strcpy(record1[i].name, "Raju");
record1[i].percentage = 86.5;
}
}

以下是使用双指针的类似示例,这是执行此操作的正确方法:

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

struct student
{
int id;
char name[20];
float percentage;
};

void func(struct student **record);

int main()
{
struct student *record = NULL;

func(&record);

if(record != NULL)
{
for(int i=0; i<2; i++)
{
printf(" 1 Id is: %d \n", record[i].id);
printf(" 1 Name is: %s \n", record[i].name);
printf(" 1 Percentage is: %f \n", record[i].percentage);
printf("\n");
}
}
else
{
printf("record pointer is null");
}

free(record);

return 0;
}

void func(struct student **record1)
{
*record1 = (struct student *)malloc(sizeof(struct student));
for(int i=0; i<2; i++)
{
if(i)
{
*record1 = (struct student *)realloc(*record1,sizeof(struct student)*(i+1));
}
(*record1)[i].id=1;
strcpy((*record1)[i].name, "Raju");
(*record1)[i].percentage = 86.5;
}
}

最佳答案

您的第一个解决方案,

record1 = (struct student *)realloc(record1,sizeof(struct student)*(i+1));

只要realloc不必移动指针就可以工作!也就是说,realloc只是扩展它之前给record1的内存区域。如果在稍后的某个阶段,需要 realloc 为您提供另一 block 内存,那么 main 中较早的指针 record 将变为 无效,现在可能包含您的“垃圾”。

正如您所想,您需要一个双指针才能看到 main 中更改后的指针。你就快到了,只是一个拼写错误:

*record1 = (struct student *)realloc(record1,sizeof(struct student)*(i+1));

在上面的行中,第二次出现的 record1 也必须取消引用,因此 *record1 因为您必须为 realloc 提供原始指针。

哦,不要转换 malloc 的结果!虽然编译器不会提示,但它可能会导致 future 的问题。

关于c - 通过引用将动态创建和填充结构数组的函数传递结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48274749/

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