gpt4 book ai didi

c - 访问结构体中的结构体

转载 作者:行者123 更新时间:2023-11-30 18:56:13 24 4
gpt4 key购买 nike

我一直在开发一个学生目录,它使用列表类型结构和结构数组来跟踪学生的信息(姓名、ID、地址、类(class)名称等),而不使用动态内存分配。下面是我的三个结构和一个函数原型(prototype):

   struct listType
{
studentType studentList[100]; //Array of Struct studentType
int listLength; //Keep track of the number of contacts in the Directory
}studentDir;

typedef struct studentInfo
{
char firstName[100];
char lastName[100];
char ID[100];
char address[50];
char phoneNumber[15];
char birthDate[15];
char startDate[15];
char endDate[15];
char GPA[10];

struct courseList;
}studentType;

struct courseList
{
char courseName[100];
char creditHours[100];
char grade[10];
};

void addStudent(struct listType dir);

问题是,当我尝试访问 addContact 函数中的结构“studentInfo”内的结构“courseList”时,出现一些编译器错误:

25 19 [警告]声明未声明任何内容[默认启用]

在函数“main”中:

46 2 [警告]内置函数“strcpy”的不兼容隐式声明[默认启用]

在函数“addContact”中:

145 59 [错误]“studentType”没有名为“courseList”的成员

147 59 [错误]“studentType”没有名为“courseList”的成员

这是函数定义:

    void addContact(struct listType dir)
{
studentDir.listLength++;

printf("\nEnter the first name of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].firstName);

printf("\nEnter the last name of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].lastName);

printf("\nEnter the ID of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].ID);

printf("\nEnter the address of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].address);

printf("\nEnter the phone number of the contact (XXX-XXX-XXXX): ");
scanf("%s", studentDir.studentList[studentDir.listLength].phoneNumber);

printf("\nEnter the birthdate of the contact(MM/DD/YYYY): ");
scanf("%s", studentDir.studentList[studentDir.listLength].birthDate);

printf("\nEnter the start date of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].startDate);

printf("\nEnter the end date of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].endDate);

printf("\nEnter the GPA of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].GPA);

printf("\nEnter the course name of the contact: ");
scanf("%s", studentDir.studentList[studentDir.listLength].courseList.courseName);

printf("\nEnter the Enter the credit hours for this course: ");
scanf("%s", studentDir.studentList[studentDir.listLength].courseList.creditHours);

printf("\nEnter the Enter the grade for this course: ");
scanf("%s", studentDir.studentList[studentDir.listLength].courseList.grade;
}

我尝试在互联网上搜索几个小时的解决方案,但找不到与我的问题相关的解决方案,希望你们能告诉我哪里出错了,并帮助我修复这个编译错误。

这也是我的主要函数,以防万一它可能有所帮助(忽略开关中其他情况下的函数调用,因为我暂时将它们取出):

    int main()
{
int menuSelect;

do
{
printf("\n================================*\n");
printf("* [1]Add Sudent *\n");
printf("* [2]Search Student by name *\n");
printf("* [3]Search Student by ID *\n");
printf("* [4]Display all Student info *\n");
printf("* (5)Quit *\n");
printf("*=================================*\n");

printf("Select an option number from the menu: ");
scanf("%d", &menuSelect);

switch(menuSelect)
{
case 1:

addStudent(studentDir);
break;

case 2:

searchName(studentDir);
break;

case 3:

searchID(studentDir);
break;

case 4:

display(studentDir);
break;

case 5:

printf("\n\t\t\t\tThank you for using the Directory!");
system("pause");
break;

}
}while(menuSelect != 5);
return 0;
}

最佳答案

您的struct StudentInfo不包含struct courseList成员,因此出现错误。对于成员声明,​​您需要分配一个变量名称(例如 struct courseList theList; )。您的语句 struct courseList 本身并未声明成员。相反,它可能被解释为前向声明。

您的编译器应该给您相应的警告,例如 gcc 4.8 中的警告:

warning: declaration does not declare anything

关于c - 访问结构体中的结构体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24985183/

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