PPT9-2 结构体变量的定义和使用.pdf
结构体变量的定义和使用 定义结构体类型 struct 结构体名 成员列表 ; 由关键字struct和结构体名共同组成 每一个成员都是结构体中的一个域 定义结构体类型 struct 结构体名 成员列表 ; struct Student int num; char name20; char id19; Date birthday; . ; struct Date int month; int day; int year; ; 定义结构体类型 numnameid birthday month day year sexage score addrtelemail int num; char name20; char id19; Date birthday; char sex; int age; double score5; char addr30; char tel12; char email20; 定义结构体类型 int num; char name20; char id19; Date birthday; char sex; int age; double score5; char addr30; char tel12; char email20; int num; char name20; char id19; Date birthday; char sex; struct Student ; 定义结构体变量 struct Student stu1,stu2; 定义结构体变量 struct 结构体名 成员列表 变量名列表; 定义结构体变量 struct 成员列表 变量名列表; 定义结构体变量 只能对结构体类型变量进行 运算。因为结构体类型只定义 了本结构体的模型和存储结构, 并没有开辟空间也没有存储数 据。 定义结构体变量 结构体类型中的每个成员均 要进行类型说明。结构体类型 中的成员名可以与程序中的变 量名相同,但二者不代表同一 对象,互不干扰。 定义结构体变量 结构体类型定义完毕需要加 上“;”表明定义结束。 结构体变量的初始化及应用 实例9.1将学生信息放入结 构体变量中,然后输出该学生 的详细信息。 结构体变量的初始化及应用 解题思路:首先定义能够存储 学生信息的结构体类型,然后 建立结构体变量,并给该变量 赋初值,最后输出该结构体各 数据成员的信息。 结构体变量的初始化及应用 struct Student stu1 = 1, 赵翔斐, 32020520030313001X, 3,13,2003, M, 15, 98,99,100,97,87, 无锡市惠山区钱藕路1号, 13771025990, ; printf(学号t%dn,stu1.num); 结构体变量的初始化及应用 struct Student stu1 = 1, 赵翔斐, 32020520030313001X, 3,13,2003, M, 15, 98,99,100,97,87, 无锡市惠山区钱藕路1号, 13771025990, ; printf(生日t%d年%d月%d日 n,stu1.birthday.year,stu1.birthday.month, stu1.birthday.day); 解决问题 首先要定义结构体类型,定义该结构体类型的 变量,为结构体变量初始化、赋值,最后输出数据 信息。同学们,你们学会了吗?