gpt4 book ai didi

c - C 中 '->'(结构的动态分配 vector )的无效类型参数

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

我知道在访问本地结构 vector 成员时使用 vector[i].member。但我现在正在研究动态分配,据我所知,当结构 vector 是动态的时,我需要使用 -> 来访问成员。

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

//Struct that stores a person's number and first name.
typedef struct person{
int number;
char* first_name;
} Person;

int main(){

int List_size; //Stores the size of the list.
scanf("%d", &List_size);

Person* list= (Person*) malloc(List_size * sizeof(Person)); //Allocate a vector of persons struct in a variable list.

for(int i = 0; i < List_size; i++){ //Fills each person of list
scanf("%d", &(list[i]->number));
(list[i]->first_name) = (char*) malloc(100 * sizeof(char));
scanf("%s",(list[i]->first_name));
}

for(int i = 0; i < List_size; i++){ //Prints each person of list
printf("%d is list[%d].number, and ", (list[i]->number), i);
printf("%s is list[%d].name\n", (list[i]->first_name), i);
printf("---------------\n");
}
}

编译器说

error: invalid type argument of '->' (have 'Person')

但是,当我使用 list[i].member 而不是 list[i]->member 时,程序运行得非常好。我很困惑是否需要使用 ->。我希望结构 vector 不使用堆栈内存,而是使用堆。

最佳答案

为了直接访问结构的成员,您需要使用.。要使用指针访问,您需要使用->。在您的代码中,list 是一个结构指针,而 list[i] 是一个结构。这就是您无法通过 -> 访问的原因。

关于c - C 中 '->'(结构的动态分配 vector )的无效类型参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53177699/

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