概述
#include <iostream>
using namespace std;
#include <string>
// 作用:结构体中的成员可以是另一个结构体
// 例子:每个老师辅导一个学生,一个老师的结构体中,记录一个学生的结构体
struct student {
string name;
int age;
int score;
};
struct teacher {
int id;
string name;
int age;
int score;
struct student stu;
};
int main()
{
// 结构体嵌套结构体
// 创建老师
teacher t;
t.id = 10000;
t.name = "老王";
t.age = 50;
t.score = 100;
t.stu.name = "小王";
t.stu.age = 25;
t.stu.score = 99;
cout << "老师姓名:" << t.name << " 老师编号:" << t.id << " 老师年龄:" << t.age << " 老师分数:" << t.score << endl;
cout << "老师辅导的学生:" << t.stu.name << " 学生的年龄:" << t.stu.name << " 学生的分数:" << t.stu.score << endl;
system("pause");
return 0;
}
最后
以上就是老实龙猫为你收集整理的结构体中嵌套结构体的全部内容,希望文章能够帮你解决结构体中嵌套结构体所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复