结构体嵌套结构体、结构体做函数参数、结构体const的使用。 2022-8-23 11:27 | 305 | 0 | C++学习笔记 800 字 | 9 分钟 结构体嵌套结构体 作用:结构体中的成员可以是另一个结构体。 例如:每个老师辅导员,可以带学生。 struct student{ int id; string name; int age; struct student stu; } struct student { int age; string name; double score; } 实例: …