Download presentation
Presentation is loading. Please wait.
1
本节内容 结构体数组
2
1、结构体数组的定义 类型 变量名[常量表达式]; //定义结构体类型 struct stStudent { int Age; int Level; }; //定义结构体变量 struct stStudent st; //定义结构体数组 struct stStudent arr[10] 或者 stStudent arr[10];
3
2、结构体数组初始化 struct stStudent{ int Age; int Level; }; struct stStudent arr[5] = {{0,0},{1,1},{2,2},{3,3},{4,4}}; 或者 arr[0].Age = 100; arr[0].Level= 100;
4
3、结构体成员的使用 格式: 结构体数组名[下标].成员名
5
4、字符串成员的处理 struct stStudent{ int Age; char Name[0x20]; }; struct stStudent arr[3] = {{0,”张三”},{1,“李四”},{2,”王五”}}; 读: char buffer[0x20]; strcpy(buffer,arr[0].Name); 写: strcpy(arr[0].Name,”编程达人”);
6
5、结构体数组的内存结构 struct stStudent{ int Age; char Name[0x20]; }; struct stStudent arr[3] = {{0,"张三"},{1,"李四"},{2,"王五"}}; int x = arr[0].Age;
9
0512-57882866 www.bcdaren.com 昆山爱达人 1250121864 昆山爱达人信息技术有限公司 视频录制:
视频提供 视频录制: 联系电话: 官网地址: 联系公众号: 昆山爱达人 联系QQ: 编程达人APP:
Similar presentations