- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在开发一个学生目录,它使用列表类型结构和结构数组来跟踪学生的信息(姓名、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/
《Rust编程与项目实战》(朱文伟,李建英)【摘要 书评 试读】- 京东图书 (jd.com) 在Rust中,结构体(Struct)是一种自定义数据类型,它允许我们将多个相关的值组合在一起,形成一个
这个问题已经有答案了: In C, does a pointer to a structure always point to its first member? (3 个回答) 已关闭 7 年前。
当执行第二个fscanf时,控制台停止工作。我做错了什么? 输入文件包含: 3 minsu 50 80 40 sarah 30 60 40 jason 70 80 90 代码: #define _CR
Swift 结构体是构建代码所用的一种通用且灵活的构造体。 我们可以为结构体定义属性(常量、变量)和添加方法,从而扩展结构体的功能。 与 C 和 Objective C 不同的是: 结构
我想在 javascript 中创建一个结构。我有一对信息,我想使用,例如: array[1] = new Struct(); array[1].name = "parameter-name"; ar
我不允许使用带有 in 关键字的结构,对吗?例如: struct Rect { float x,y,width,height; }; layout(location = 7) in Rect
我的结构声明的片段: struct record{ char type[4]; uint32_t data_size; uint32_t flags; uint32_t
您能否帮助我理解为什么我的 dataStruct 结构的值不是其成员之一的值? (对于simpleDataStruct结构) 我用这一行打印值: printf("dataStruct:........
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
我不确定如何在 C 中创建一个具有不同位大小的变量的结构,例如: 我想创建一个结构体,其中一个变量作为 8 位整数,一个变量作为 16 位 bool 值,一个变量作为 8 位 bool 值,一个变量作
我正在为一个项目编写一个通信协议(protocol),其中包括两个用于请求和响应的 C 结构。根据设备的设置方式,数据传输可以是请求(主模块)或响应(从模块)。 这些结构彼此非常接近。最大的区别在于请
我有以下 C 结构体,代表外部芯片中的寄存器 typedef union { // Individual Fields struct { uint8_t ELEM_1
我了解 C++,并且正在学习 C。我想将 nullptr 定义为 NULL,但是当我使用括号初始化结构时,它会导致错误并显示预期的“}”。我正在使用 Visual Studio 编译器,我的代码示例如
#include struct s { char *a1; int a; }; int main(){ struct s p={"asdv",11}; struct s p1=p;
如果将记录作为参数发送给函数,如何添加记录? struct record { char name[20]; int nr; }; void AddRecord(struct record **p_al
使用python向C语言的链接库传递数组、结构体、指针类型的数据 由于最近的项目频繁使用python调用同事的C语言代码,在调用过程中踩了很多坑,一点一点写出来供大家参考,我们仍然是使用ctype
枚举、结构体、类 注:本文为作者自己总结,过于基础的就不再赘述 ,都是亲自测试的结果。如有错误或者遗漏的地方,欢迎指正,一起学习。 1、枚举 枚举是用来定义一组通用类型的一组相关值 ,关键字enum
Swift 结构体是构建代码所用的一种通用且灵活的构造体 可以为结构体定义属性(常量、变量)和添加方法,从而扩展结构体的功能 与 C 和 Objective C 不同的是: 结构体不需要包
关于结构的快速问题: struct xint { int number; char string[12]; }; int main(int argc, char *argv[])
我是一名优秀的程序员,十分优秀!