C语言中的结构体是一种用户自定义的数据类型,它可以同时存储多个不同类型的数据。结构体由多个成员变量组成,每个成员变量可以有不同的数据类型。
结构体的定义形式为:
struct 结构体名 {数据类型 成员变量1;数据类型 成员变量2;// 其他成员变量
};
例如,以下是一个表示学生信息的结构体的定义:
struct Student {char name[20]; // 学生姓名int age; // 学生年龄float height; // 学生身高
};
在上述结构体中,struct Student
表示结构体类型的名称,name
、age
、height
是结构体的成员变量,它们分别表示学生的姓名、年龄和身高。
创建结构体变量时,使用如下语法:
struct 结构体名 变量名;
例如,创建一个名为student1
的Student
类型的结构体变量:
struct Student student1;
结构体变量的成员变量可以通过成员运算符.
来访问和修改。例如,设置student1
的姓名为"张三":
strcpy(student1.name, "张三");
结构体可以作为函数的参数和返回值,允许将多个相关的数据一并传递或返回。
这是C语言中结构体的基本用法,通过结构体,我们可以方便地组织和操作多个不同类型的数据。
不同类型的结构体写法
使用typedef简化结构体名称:
typedef struct {int id;char name[20];float score;
} Student;
在定义结构体的同时声明变量:
struct Student {int id;char name[20];float score;
} stu1, stu2;
嵌套结构体:
struct Date {int day;int month;int year;
};struct Student {int id;char name[20];float score;struct Date birthdate;
};
结构体作为函数参数
void printStudentInfo(struct Student stu) {printf("ID: %d", stu.id);printf("Name: %s", stu.name);printf("Score: %.2f", stu.score);
}
结构体指针
struct Student *ptr;