结构体定义
三种声明方式
1 struct Student s1
2 struct Student s2={…}
3在定义结构体时,顺便创建结构体变量(不建议用)
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//自定义数据类型,一些类型集合组成的一个类型
// 语法 struct
//1.创建学生数据类型:学生报错(姓名,年龄,分数)
struct Student
{//成员列表//姓名string name;//年龄int age;//分数int score;
}s3;
//2.通过学生类型创建具体学生int main()
{//2.1 struct Student s1struct Student s1;//给s1属性赋值,通过.访问结构体变量中的属性s1.name = "张三";s1.age = 18;s1.score = 100;cout << "姓名: " << s1.name << "年龄: " << s1.age << "分数: " << s1.score << endl;//2.2 struct Student s2={...}struct Student s2 = {"李四",19,80 };cout << "姓名: " << s2.name << "年龄: " << s2.age << "分数: " << s2.score << endl;//2.3在定义结构体时,顺便创建结构体变量(不建议用)s3.name = "王五";s3.age = 20;s3.score = 60;
}
结构体数组
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//结构体数组
//1.定义结构体
struct Student
{//姓名string name;//年龄int age;//分数int score;
};int main()
{//2.创建结构体数组struct Student stuArray[3] = {{"张三",18,100},{"李四",28,99},{"王五",38,66}};//3.给结构体数组中的元素赋值stuArray[2].name = "赵六";stuArray[2].age = 80;stuArray[2].score = 60;//4.遍历结构体数组for (int i = 0; i < 3; i++) {cout << "姓名:" << stuArray[i].name << " 年龄:" << stuArray[i].age << " 分数" << stuArray[i].score << endl;}
}
结构体指针
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//1.定义结构体
struct Student
{//姓名string name;//年龄int age;//分数int score;
};int main()
{//2.创建学生结构体变量struct Student s ={"张三",18,100};//3.通过指针指向结构体变量struct Student* p = &s;//4.通过指针访问结构体变量中的数据//通过结构体指针,访问结构体中的属性,需要利用'->'cout << " 姓名: " << p->name << " 年龄: " << p->age << " 分数: " << p->score << endl;
}
结构体嵌套结构体
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//定义学生结构体
struct student
{//姓名string name;//年龄int age;//分数int score;
};//定义老师结构体
struct teacher
{int id; //教师编号string name;//教师姓名int age; //年龄struct student stu;//辅导的学生
};int main()
{teacher t;t.id = 10000;t.name = "老王";t.age = 50;t.stu.name = "小王";t.stu.age = 20;t.stu.score = 60;
}
结构体做函数参数
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//定义学生结构体
struct student
{//姓名string name;//年龄int age;//分数int score;
};//值传递
void printStudent1(struct student s) {s.age = 100;cout << "子函数中 姓名: " << s.name << " 年龄: " << s.age << " 分数: " << s.score << endl;
}//地址传递
void printStudent2(struct student * s) {s->age = 200;cout << "子函数中 姓名: " << s->name << " 年龄: " << s->age << " 分数: " << s->score << endl;
}int main()
{//结构体做函数参数//将学生传入到一个参数中,打印学生身上的所有信息//创建结构体变量struct student s;s.name = "张三";s.age = 20;s.score = 85;printStudent1(s);printStudent2(&s);
}
结构体中使用const
将函数中的形参改为指针,可以减少内存空间,而且不会复制新的副本出来
// 结构体.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
using namespace std;//定义学生结构体
struct student
{//姓名string name;//年龄int age;//分数int score;
};//将函数中的形参改为指针,可以减少内存空间,而且不会复制新的副本出来
void printStudents(const struct student * s) {//s->age = 100; 加上const后,一旦有修改的操作就会报错,可以防止误操作cout << "姓名: " << s->name << " 年龄: " << s->age << " 分数: " << s->score << endl;
}int main()
{//结构体做函数参数//将学生传入到一个参数中,打印学生身上的所有信息//创建结构体变量struct student s = {"张三",15,71};printStudents(&s);
}